/* Options: Date: 2024-12-29 03:29:52 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PersonAuthRequest.* //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="/person/{uuid}/auth", Verbs="POST") public static class PersonAuthRequest implements IReturn { public String uuid = null; public String getUuid() { return uuid; } public PersonAuthRequest setUuid(String value) { this.uuid = value; return this; } private static Object responseType = PersonAuthResponse.class; public Object getResponseType() { return responseType; } } public static class PersonAuthResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public String uuid = null; public String first_name = null; public String last_name = null; public String preferred_name = null; public ArrayList roles = null; public ResponseStatus getResponseStatus() { return responseStatus; } public PersonAuthResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public PersonAuthResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getUuid() { return uuid; } public PersonAuthResponse setUuid(String value) { this.uuid = value; return this; } public String getFirstName() { return first_name; } public PersonAuthResponse setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public PersonAuthResponse setLastName(String value) { this.last_name = value; return this; } public String getPreferredName() { return preferred_name; } public PersonAuthResponse setPreferredName(String value) { this.preferred_name = value; return this; } public ArrayList getRoles() { return roles; } public PersonAuthResponse setRoles(ArrayList value) { this.roles = value; return this; } } }