/* Options: Date: 2025-06-13 06:46:15 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AuthenticateCitizenRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/citizen/authenticate") public static class AuthenticateCitizenRQ implements IReturn { public String Email = null; public String Password = null; public Long Provider = null; public String DisplayName = null; public String PhoneNumber = null; public String ProviderId = null; public String MobileId = null; public String MobileOS = null; public String CreatedUser = null; public String getEmail() { return Email; } public AuthenticateCitizenRQ setEmail(String value) { this.Email = value; return this; } public String getPassword() { return Password; } public AuthenticateCitizenRQ setPassword(String value) { this.Password = value; return this; } public Long getProvider() { return Provider; } public AuthenticateCitizenRQ setProvider(Long value) { this.Provider = value; return this; } public String getDisplayName() { return DisplayName; } public AuthenticateCitizenRQ setDisplayName(String value) { this.DisplayName = value; return this; } public String getPhoneNumber() { return PhoneNumber; } public AuthenticateCitizenRQ setPhoneNumber(String value) { this.PhoneNumber = value; return this; } public String getProviderId() { return ProviderId; } public AuthenticateCitizenRQ setProviderId(String value) { this.ProviderId = value; return this; } public String getMobileId() { return MobileId; } public AuthenticateCitizenRQ setMobileId(String value) { this.MobileId = value; return this; } public String getMobileOS() { return MobileOS; } public AuthenticateCitizenRQ setMobileOS(String value) { this.MobileOS = value; return this; } public String getCreatedUser() { return CreatedUser; } public AuthenticateCitizenRQ setCreatedUser(String value) { this.CreatedUser = value; return this; } private static Object responseType = AuthenticateCitizenRS.class; public Object getResponseType() { return responseType; } } public static class AuthenticateCitizenRS extends CoreRS { public Citizen Data = null; public Citizen getData() { return Data; } public AuthenticateCitizenRS setData(Citizen value) { this.Data = value; return this; } } public static class Citizen { public String Email = null; public String DisplayName = null; public String Avatar = null; public String Theme = null; public String PhoneNumber = null; public Long Provider = null; public String ProviderId = null; public String Password = null; public String Banned = null; public String Status = null; public String getEmail() { return Email; } public Citizen setEmail(String value) { this.Email = value; return this; } public String getDisplayName() { return DisplayName; } public Citizen setDisplayName(String value) { this.DisplayName = value; return this; } public String getAvatar() { return Avatar; } public Citizen setAvatar(String value) { this.Avatar = value; return this; } public String getTheme() { return Theme; } public Citizen setTheme(String value) { this.Theme = value; return this; } public String getPhoneNumber() { return PhoneNumber; } public Citizen setPhoneNumber(String value) { this.PhoneNumber = value; return this; } public Long getProvider() { return Provider; } public Citizen setProvider(Long value) { this.Provider = value; return this; } public String getProviderId() { return ProviderId; } public Citizen setProviderId(String value) { this.ProviderId = value; return this; } public String getPassword() { return Password; } public Citizen setPassword(String value) { this.Password = value; return this; } public String getBanned() { return Banned; } public Citizen setBanned(String value) { this.Banned = value; return this; } public String getStatus() { return Status; } public Citizen setStatus(String value) { this.Status = value; return this; } } public static class CoreRS { public String Code = null; public String ErrorMessage = null; public String ErrorStackTrace = null; public String getCode() { return Code; } public CoreRS setCode(String value) { this.Code = value; return this; } public String getErrorMessage() { return ErrorMessage; } public CoreRS setErrorMessage(String value) { this.ErrorMessage = value; return this; } public String getErrorStackTrace() { return ErrorStackTrace; } public CoreRS setErrorStackTrace(String value) { this.ErrorStackTrace = value; return this; } } }