(* Options: Date: 2025-12-06 07:00:24 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAdMessageTrackingRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IHasPlaceId = abstract PlaceId:Int64 with get,set [] type IHasAdMessageId = abstract AdMessageId:Int64 with get,set [] type DailyStats() = member val Day:DateTime = new DateTime() with get,set member val DisplayedInAppCount:Int64 = new Int64() with get,set member val AverageDisplayedInAppTimeInSeconds:Double = new Double() with get,set [] type GetAdMessageTrackingResponse() = member val DailyStats:ResizeArray = new ResizeArray() with get,set [] [] type GetAdMessageTrackingRequest() = interface IReturn interface IGet member val AdMessageId:Int64 = new Int64() with get,set member val PlaceId:Int64 = new Int64() with get,set