/* Options: Date: 2025-07-18 01:00:47 SwiftVersion: 5.0 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: PostDocumentReq.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/documents", "POST") public class PostDocumentReq : IReturn, Codable { public typealias Return = Members public var reference:String? public var languageIsoCode:String? public var countryIsoCode:String? public var clientUri:String? public var authenticationMethodType:AuthenticationMethodType? public var employeeGuid:String? required public init(){} } public class Members : Codable { public var homeUrl:String? public var success:Bool? public var isPensionSight:Bool? required public init(){} } public enum AuthenticationMethodType : String, Codable { case NemId case SSO case Common case Single } public enum AuthenticationMethodType : String, Codable { case NemId case SSO case Common case Single }