/* Options: Date: 2024-12-29 03:56:59 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: PersonVerySimpleRequest.* //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/regent_login/{regent_login}", Verbs="POST") public static class PersonVerySimpleRequest implements IReturn { public String regent_login = null; public String getRegentLogin() { return regent_login; } public PersonVerySimpleRequest setRegentLogin(String value) { this.regent_login = value; return this; } private static Object responseType = PersonVerySimpleResponse.class; public Object getResponseType() { return responseType; } } public static class PersonVerySimpleResponse { public ResponseStatus responseStatus = null; public String first_name = null; public String last_name = null; public String preferred_name = null; public String email = null; public ResponseStatus getResponseStatus() { return responseStatus; } public PersonVerySimpleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getFirstName() { return first_name; } public PersonVerySimpleResponse setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public PersonVerySimpleResponse setLastName(String value) { this.last_name = value; return this; } public String getPreferredName() { return preferred_name; } public PersonVerySimpleResponse setPreferredName(String value) { this.preferred_name = value; return this; } public String getEmail() { return email; } public PersonVerySimpleResponse setEmail(String value) { this.email = value; return this; } } }