(* Options: Date: 2025-12-06 07:50:56 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: PlaceUploadLogoRequest.* //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 DeploymentSlot = | Production = 0 | Qa = 1 | Unstable = 2 | Test = 3 | Local = 4 | Docker = 5 [] type CloudBlob() = member val PublicUrl:String = null with get,set member val Key:String = null with get,set member val Environment:Nullable = new Nullable() with get,set member val Bucket:String = null with get,set member val IdentifyingSuffix:String = null with get,set member val MimeType:String = null with get,set [] type ImageUrls() = member val Preview:String = null with get,set member val Small:String = null with get,set member val Medium:String = null with get,set member val Large:String = null with get,set [] type PlaceUploadLogoResponse() = member val Image:CloudBlob = null with get,set member val ImageUrls:ImageUrls = null with get,set [] [] type PlaceUploadLogoRequest() = interface IReturn interface IPost member val PlaceId:Int64 = new Int64() with get,set member val Base64EncodedImageLogo:String = null with get,set