(* 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: MallRemovePlaceRequest.* //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 IHasPlaceIdOrMallId = abstract PlaceId:Nullable with get,set abstract MallId:Nullable with get,set [] type MallRemovePlaceResponse() = member val MallId:Int64 = new Int64() with get,set member val PlaceId:Int64 = new Int64() with get,set [] [] type MallRemovePlaceRequest() = interface IReturn interface IPost [] member val MallId:Nullable = new Nullable() with get,set [] member val PlaceId:Nullable = new Nullable() with get,set