/* Options: Date: 2026-03-31 20:17:03 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetMyRecentlyOpenedDocuments.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/me/documents/recent", "GET") public class GetMyRecentlyOpenedDocuments : IReturn, IPageOptions, Codable { public typealias Return = ObservableCollection public var onlyStoredInSharePointOnline:Bool? public var progCode:String? public var pageSize:Int? public var pageNumber:Int? required public init(){} } public protocol IPageOptions { var pageNumber:Int? { get set } var pageSize:Int? { get set } }