(* Options: Date: 2026-01-12 02:39:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qa-business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeleteAdImageRequest.* //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 IHasAdId = abstract AdId:Int64 with get,set [] type DeleteAdImageResponse() = member val AdImageId:Int64 = new Int64() with get,set [] [] type DeleteAdImageRequest() = interface IReturn interface IDelete member val AdImageId:Int64 = new Int64() with get,set member val AdId:Int64 = new Int64() with get,set