/* Options: Date: 2024-06-26 10:00:14 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EAccountingCheckAuthentication.* //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="/eaccounting/check", Verbs="GET") public static class EAccountingCheckAuthentication implements IReturn, ICompany { public UUID CompanyId = null; public UUID getCompanyId() { return CompanyId; } public EAccountingCheckAuthentication setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = EaccountingToken.class; public Object getResponseType() { return responseType; } } public static class EaccountingToken { public String AccessToken = null; public String RefreshToken = null; public String TokenType = null; public Integer ExpiresIn = null; public Date ExpiresAt = null; public String getAccessToken() { return AccessToken; } public EaccountingToken setAccessToken(String value) { this.AccessToken = value; return this; } public String getRefreshToken() { return RefreshToken; } public EaccountingToken setRefreshToken(String value) { this.RefreshToken = value; return this; } public String getTokenType() { return TokenType; } public EaccountingToken setTokenType(String value) { this.TokenType = value; return this; } public Integer getExpiresIn() { return ExpiresIn; } public EaccountingToken setExpiresIn(Integer value) { this.ExpiresIn = value; return this; } public Date getExpiresAt() { return ExpiresAt; } public EaccountingToken setExpiresAt(Date value) { this.ExpiresAt = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }