(* Options: Date: 2025-10-27 16:16:30 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: GetCollectionsRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace CollectionsAPI.Contracts.DTOs 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 V4PaginatedBaseRequest() = inherit V4BaseRequest() [] member val Offset:Int32 = new Int32() with get,set [] member val Limit:Int32 = new Int32() with get,set [] [] type V4ListRequest() = inherit V4PaginatedBaseRequest() [] member val Ids:ResizeArray = null with get,set [] [] type V4BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] type IUserCollection = abstract Id:String with get,set abstract Title:String with get,set abstract LinkIds:IEnumerable with get,set abstract CollectionSettingsId:String with get,set [] [] type V4PageObject() = [] member val Offset:Int32 = new Int32() with get,set [] member val Limit:Int32 = new Int32() with get,set [] member val TotalRecords:Int32 = new Int32() with get,set [] [] type V4PaginatedBaseResponse() = inherit V4BaseResponse() [] member val Page:V4PageObject = null with get,set [] type IGetCollectionsResponse = abstract Data:IEnumerable with get,set [] [] type GetCollectionsResponse() = inherit V4PaginatedBaseResponse() [] member val Data:IEnumerable = null with get,set [] [] [] type GetCollectionsRequest() = inherit V4ListRequest() interface IReturn