(* Options: Date: 2025-10-27 16:49:34 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://collections-api-zane.dev.platform.georiot.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PostCollectionRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace CollectionsAPI.Contracts.V4.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type V4BaseRequest() = class end [] type IPostCollectionRequest = abstract Title:String with get,set abstract LinkIds:IEnumerable with get,set abstract CollectionSettingsId:String with get,set [] [] type V4BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] type IPostCollectionResponseData = abstract Id:String with get,set [] type IPostCollectionResponse = abstract Data:IPostCollectionResponseData with get,set [] [] type PostCollectionResponse() = inherit V4BaseResponse() [] member val Data:IPostCollectionResponseData = null with get,set [] [] [] type PostCollectionRequest() = inherit V4BaseRequest() interface IReturn [] member val Title:String = null with get,set [] member val LinkIds:IEnumerable = null with get,set [] member val CollectionSettingsId:String = null with get,set