/* Options: Date: 2026-04-02 10:55:09 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AuthenticateWithKeycloak.* //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="/auth/keycloak", Verbs="POST") public static class AuthenticateWithKeycloak implements IReturn { public String accessToken = null; public String getAccessToken() { return accessToken; } public AuthenticateWithKeycloak setAccessToken(String value) { this.accessToken = value; return this; } private static Object responseType = AuthenticateWithKeycloakResponse.class; public Object getResponseType() { return responseType; } } public static class AuthenticateWithKeycloakResponse { public String userId = null; public String sessionId = null; public String userName = null; public String displayName = null; public String referrerUrl = null; public String bearerToken = null; public String profileUrl = null; public Integer departmentId = null; public ArrayList roles = null; public ArrayList permissions = null; public ResponseStatus responseStatus = null; public String getUserId() { return userId; } public AuthenticateWithKeycloakResponse setUserId(String value) { this.userId = value; return this; } public String getSessionId() { return sessionId; } public AuthenticateWithKeycloakResponse setSessionId(String value) { this.sessionId = value; return this; } public String getUserName() { return userName; } public AuthenticateWithKeycloakResponse setUserName(String value) { this.userName = value; return this; } public String getDisplayName() { return displayName; } public AuthenticateWithKeycloakResponse setDisplayName(String value) { this.displayName = value; return this; } public String getReferrerUrl() { return referrerUrl; } public AuthenticateWithKeycloakResponse setReferrerUrl(String value) { this.referrerUrl = value; return this; } public String getBearerToken() { return bearerToken; } public AuthenticateWithKeycloakResponse setBearerToken(String value) { this.bearerToken = value; return this; } public String getProfileUrl() { return profileUrl; } public AuthenticateWithKeycloakResponse setProfileUrl(String value) { this.profileUrl = value; return this; } public Integer getDepartmentId() { return departmentId; } public AuthenticateWithKeycloakResponse setDepartmentId(Integer value) { this.departmentId = value; return this; } public ArrayList getRoles() { return roles; } public AuthenticateWithKeycloakResponse setRoles(ArrayList value) { this.roles = value; return this; } public ArrayList getPermissions() { return permissions; } public AuthenticateWithKeycloakResponse setPermissions(ArrayList value) { this.permissions = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public AuthenticateWithKeycloakResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }