(* Options: Date: 2026-04-15 21:17:49 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://api.booklinker.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 Booklinker.API.ServiceModel.V2.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type V2BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] [] type V2BaseRequest() = class end [] [] type V2PaginatedBaseRequest() = inherit V2BaseRequest() [] member val Offset:Int32 = new Int32() with get,set [] member val Limit:Int32 = new Int32() with get,set [] [] type V2ListRequest() = inherit V2PaginatedBaseRequest() [] member val Ids:ResizeArray = null with get,set [] [] type V2PageObject() = [] 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 V2PaginatedBaseResponse() = inherit V2BaseResponse() [] member val Page:V2PageObject = 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 IGetCollectionsResponse = abstract Data:IEnumerable with get,set [] [] type GetCollectionsResponse() = inherit V2PaginatedBaseResponse() [] [] [] type GetCollectionsRequest() = inherit V2ListRequest() interface IReturn