/* Options: Date: 2025-07-18 00:49:47 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PostDocumentReq.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/documents", Verbs="POST") open class PostDocumentReq : IReturn { var reference:String? = null var languageIsoCode:String? = null var countryIsoCode:String? = null var clientUri:String? = null var authenticationMethodType:AuthenticationMethodType? = null var employeeGuid:UUID? = null companion object { private val responseType = Members::class.java } override fun getResponseType(): Any? = PostDocumentReq.responseType } open class Members { var homeUrl:String? = null var success:Boolean? = null var isPensionSight:Boolean? = null } enum class AuthenticationMethodType { NemId, Sso, Common, Single, } enum class AuthenticationMethodType { NemId, Sso, Common, Single, }