/* Options: Date: 2025-07-18 00:03:20 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PostDocumentReq.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/documents", Verbs="POST") public static class PostDocumentReq implements IReturn { public String reference = null; public String languageIsoCode = null; public String countryIsoCode = null; public String clientUri = null; public AuthenticationMethodType authenticationMethodType = null; public UUID employeeGuid = null; public String getReference() { return reference; } public PostDocumentReq setReference(String value) { this.reference = value; return this; } public String getLanguageIsoCode() { return languageIsoCode; } public PostDocumentReq setLanguageIsoCode(String value) { this.languageIsoCode = value; return this; } public String getCountryIsoCode() { return countryIsoCode; } public PostDocumentReq setCountryIsoCode(String value) { this.countryIsoCode = value; return this; } public String getClientUri() { return clientUri; } public PostDocumentReq setClientUri(String value) { this.clientUri = value; return this; } public AuthenticationMethodType getAuthenticationMethodType() { return authenticationMethodType; } public PostDocumentReq setAuthenticationMethodType(AuthenticationMethodType value) { this.authenticationMethodType = value; return this; } public UUID getEmployeeGuid() { return employeeGuid; } public PostDocumentReq setEmployeeGuid(UUID value) { this.employeeGuid = value; return this; } private static Object responseType = Members.class; public Object getResponseType() { return responseType; } } public static class Members { public String homeUrl = null; public Boolean success = null; public Boolean isPensionSight = null; public String getHomeUrl() { return homeUrl; } public Members setHomeUrl(String value) { this.homeUrl = value; return this; } public Boolean isSuccess() { return success; } public Members setSuccess(Boolean value) { this.success = value; return this; } public Boolean getIsPensionSight() { return isPensionSight; } public Members setIsPensionSight(Boolean value) { this.isPensionSight = value; return this; } } public static enum AuthenticationMethodType { NemId, Sso, Common, Single; } public static enum AuthenticationMethodType { NemId, Sso, Common, Single; } }