/* Options: Date: 2024-10-06 10:28:05 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: PersonKeysRequest.* //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/keys/all", Verbs="POST") public static class PersonKeysRequest implements IReturn { private static Object responseType = PersonKeysResponse.class; public Object getResponseType() { return responseType; } } public static class PersonKeysResponse { public ResponseStatus responseStatus = null; public ArrayList personKeyResponses = null; public ResponseStatus getResponseStatus() { return responseStatus; } public PersonKeysResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public ArrayList getPersonKeyResponses() { return personKeyResponses; } public PersonKeysResponse setPersonKeyResponses(ArrayList value) { this.personKeyResponses = value; return this; } } public static class PersonKeyResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public Integer re_id = null; public String sugar_id = null; public String uuid = null; public Integer student_id = null; public String regent_login = null; public ResponseStatus getResponseStatus() { return responseStatus; } public PersonKeyResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public PersonKeyResponse setRegentId(Integer value) { this.regent_id = value; return this; } public Integer getReId() { return re_id; } public PersonKeyResponse setReId(Integer value) { this.re_id = value; return this; } public String getSugarId() { return sugar_id; } public PersonKeyResponse setSugarId(String value) { this.sugar_id = value; return this; } public String getUuid() { return uuid; } public PersonKeyResponse setUuid(String value) { this.uuid = value; return this; } public Integer getStudentId() { return student_id; } public PersonKeyResponse setStudentId(Integer value) { this.student_id = value; return this; } public String getRegentLogin() { return regent_login; } public PersonKeyResponse setRegentLogin(String value) { this.regent_login = value; return this; } } }