/* Options: Date: 2024-10-18 04:28:17 SwiftVersion: 5.0 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetDocumentViewDetails.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/documentviews/{Key}", "GET POST") public class GetDocumentViewDetails : IReturn, Codable { public typealias Return = DocumentView public var key:String? public var includeExplorers:Bool? 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) } } } 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(){} }