(* Options: Date: 2026-07-15 03:36:28 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qa-consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: TrackClickMessage.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ConsumerApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type ClickChannel = | ReferFriend = 0 | ReferBusiness = 1 | SharePlace = 2 | ShareAd = 3 [] type TrackClickMessage() = interface IReturnVoid member val Channel:ClickChannel = new ClickChannel() with get,set member val PlaceId:Nullable = new Nullable() with get,set member val AdId:Nullable = new Nullable() with get,set member val UserHashId:String = null with get,set