(* Options: Date: 2025-12-06 07:04:28 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: PlaceUpdateStateRequest.* //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 PlaceState = | Draft = 0 | Active = 1 | Paused = 2 | Archived = 3 [] type PlaceUpdateStateResponse() = member val PlaceId:Int64 = new Int64() with get,set member val State:PlaceState = new PlaceState() with get,set [] [] type PlaceUpdateStateRequest() = interface IReturn interface IPut member val PlaceId:Int64 = new Int64() with get,set member val State:PlaceState = new PlaceState() with get,set