(* Options: Date: 2025-12-06 07:01:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PlaceExcludeAddUploadRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BackofficeApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type PlaceExcludeDto() = member val Country:String = null with get,set member val OrganizationNumber:String = null with get,set member val Note:String = null with get,set [] type PlaceExcludeAddUploadResponse() = member val PlacesAddedToExclude:Int32 = new Int32() with get,set [] [] type PlaceExcludeAddUploadRequest() = interface IReturn interface IPost member val PlacesToExclude:ResizeArray = new ResizeArray() with get,set