/* Options: Date: 2026-09-10 05:45:23 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: RegentLoginPersonMatchRequest.* //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="/RegentLogin/PersonMatch", Verbs="POST") public static class RegentLoginPersonMatchRequest implements IReturn { public String first_name = null; public String last_name = null; public String email = null; public Date dob = null; public Integer regent_id = null; public String getFirstName() { return first_name; } public RegentLoginPersonMatchRequest setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public RegentLoginPersonMatchRequest setLastName(String value) { this.last_name = value; return this; } public String getEmail() { return email; } public RegentLoginPersonMatchRequest setEmail(String value) { this.email = value; return this; } public Date getDob() { return dob; } public RegentLoginPersonMatchRequest setDob(Date value) { this.dob = value; return this; } public Integer getRegentId() { return regent_id; } public RegentLoginPersonMatchRequest setRegentId(Integer value) { this.regent_id = value; return this; } private static Object responseType = RegentLoginPersonMatchResponse.class; public Object getResponseType() { return responseType; } } public static class RegentLoginPersonMatchResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public Boolean birthdate_exists = null; public Boolean birthdate_matches = null; public Boolean has_regent_login = null; public Boolean is_a_regis_person = null; public Boolean email_matches = null; public ResponseStatus getResponseStatus() { return responseStatus; } public RegentLoginPersonMatchResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public RegentLoginPersonMatchResponse setRegentId(Integer value) { this.regent_id = value; return this; } public Boolean isBirthdateExists() { return birthdate_exists; } public RegentLoginPersonMatchResponse setBirthdateExists(Boolean value) { this.birthdate_exists = value; return this; } public Boolean isBirthdateMatches() { return birthdate_matches; } public RegentLoginPersonMatchResponse setBirthdateMatches(Boolean value) { this.birthdate_matches = value; return this; } public Boolean isHasRegentLogin() { return has_regent_login; } public RegentLoginPersonMatchResponse setHasRegentLogin(Boolean value) { this.has_regent_login = value; return this; } public Boolean getIsARegisPerson() { return is_a_regis_person; } public RegentLoginPersonMatchResponse setIsARegisPerson(Boolean value) { this.is_a_regis_person = value; return this; } public Boolean isEmailMatches() { return email_matches; } public RegentLoginPersonMatchResponse setEmailMatches(Boolean value) { this.email_matches = value; return this; } } }