/* Options: Date: 2025-07-04 09:48:23 SwiftVersion: 5.0 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetDocumentViews.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/documentviews", "GET") public class GetDocumentViews : IReturn, Codable { public typealias Return = ObservableCollection public var includeExplorers:Bool public var workspaceID:String? required public init(){} } public class Explorer : Codable { public var id:String public var title:String public var order:Int required public init(){} } // @DataContract public class MobileView : Codable { // @DataMember public var id:String // @DataMember public var title:String // @DataMember public var imageUrl:String // @DataMember public var childrenCount:Int? // @DataMember public var order:Int // @DataMember public var explorers:[Explorer] = [] required public init(){} } public class DocumentView : MobileView { // @DataMember public var translateKey:String // @DataMember public var siteMapKey:String required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case translateKey case siteMapKey } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) translateKey = try container.decodeIfPresent(String.self, forKey: .translateKey) siteMapKey = try container.decodeIfPresent(String.self, forKey: .siteMapKey) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if translateKey != nil { try container.encode(translateKey, forKey: .translateKey) } if siteMapKey != nil { try container.encode(siteMapKey, forKey: .siteMapKey) } } }