/* Options: Date: 2024-12-29 02:11:50 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: RegistrationSummaryRequest.* //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="/registration/summary", Verbs="POST") public static class RegistrationSummaryRequest implements IReturn { public String uuid = null; public String from_this_term = null; public String getUuid() { return uuid; } public RegistrationSummaryRequest setUuid(String value) { this.uuid = value; return this; } public String getFromThisTerm() { return from_this_term; } public RegistrationSummaryRequest setFromThisTerm(String value) { this.from_this_term = value; return this; } private static Object responseType = RegistrationSummaryResponse.class; public Object getResponseType() { return responseType; } } public static class RegistrationSummaryResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public String uuid = null; public Boolean is_missing_tax_number = null; public PersonSimpleResponse person = null; public ArrayList registrations = null; public ProvisionalRegistrationsForStudentResponse provisional_registrations = null; public ResponseStatus getResponseStatus() { return responseStatus; } public RegistrationSummaryResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public RegistrationSummaryResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getUuid() { return uuid; } public RegistrationSummaryResponse setUuid(String value) { this.uuid = value; return this; } public Boolean getIsMissingTaxNumber() { return is_missing_tax_number; } public RegistrationSummaryResponse setIsMissingTaxNumber(Boolean value) { this.is_missing_tax_number = value; return this; } public PersonSimpleResponse getPerson() { return person; } public RegistrationSummaryResponse setPerson(PersonSimpleResponse value) { this.person = value; return this; } public ArrayList getRegistrations() { return registrations; } public RegistrationSummaryResponse setRegistrations(ArrayList value) { this.registrations = value; return this; } public ProvisionalRegistrationsForStudentResponse getProvisionalRegistrations() { return provisional_registrations; } public RegistrationSummaryResponse setProvisionalRegistrations(ProvisionalRegistrationsForStudentResponse value) { this.provisional_registrations = value; return this; } } public static class StudentAcademicCredentialByReportingTermSimpleResponse { public ResponseStatus responseStatus = null; public String reportingTerm = null; public BigDecimal onlineCreditsAttempted = null; public BigDecimal onlineAuditsAttempted = null; public ArrayList studentAcademicCredentialSimpleResponse = null; public ResponseStatus getResponseStatus() { return responseStatus; } public StudentAcademicCredentialByReportingTermSimpleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getReportingTerm() { return reportingTerm; } public StudentAcademicCredentialByReportingTermSimpleResponse setReportingTerm(String value) { this.reportingTerm = value; return this; } public BigDecimal getOnlineCreditsAttempted() { return onlineCreditsAttempted; } public StudentAcademicCredentialByReportingTermSimpleResponse setOnlineCreditsAttempted(BigDecimal value) { this.onlineCreditsAttempted = value; return this; } public BigDecimal getOnlineAuditsAttempted() { return onlineAuditsAttempted; } public StudentAcademicCredentialByReportingTermSimpleResponse setOnlineAuditsAttempted(BigDecimal value) { this.onlineAuditsAttempted = value; return this; } public ArrayList getStudentAcademicCredentialSimpleResponse() { return studentAcademicCredentialSimpleResponse; } public StudentAcademicCredentialByReportingTermSimpleResponse setStudentAcademicCredentialSimpleResponse(ArrayList value) { this.studentAcademicCredentialSimpleResponse = value; return this; } } public static class StudentAcademicCredentialSimpleResponse { public ResponseStatus responseStatus = null; public String course_uuid = null; public String course_name = null; public String section_code = null; public Integer section_id = null; public String term = null; public String reporting_term = null; public String title = null; public BigDecimal amount = null; public Boolean is_audit = null; public Boolean is_pass_fail = null; public Boolean is_graded = null; public ResponseStatus getResponseStatus() { return responseStatus; } public StudentAcademicCredentialSimpleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getCourseUuid() { return course_uuid; } public StudentAcademicCredentialSimpleResponse setCourseUuid(String value) { this.course_uuid = value; return this; } public String getCourseName() { return course_name; } public StudentAcademicCredentialSimpleResponse setCourseName(String value) { this.course_name = value; return this; } public String getSectionCode() { return section_code; } public StudentAcademicCredentialSimpleResponse setSectionCode(String value) { this.section_code = value; return this; } public Integer getSectionId() { return section_id; } public StudentAcademicCredentialSimpleResponse setSectionId(Integer value) { this.section_id = value; return this; } public String getTerm() { return term; } public StudentAcademicCredentialSimpleResponse setTerm(String value) { this.term = value; return this; } public String getReportingTerm() { return reporting_term; } public StudentAcademicCredentialSimpleResponse setReportingTerm(String value) { this.reporting_term = value; return this; } public String getTitle() { return title; } public StudentAcademicCredentialSimpleResponse setTitle(String value) { this.title = value; return this; } public BigDecimal getAmount() { return amount; } public StudentAcademicCredentialSimpleResponse setAmount(BigDecimal value) { this.amount = value; return this; } public Boolean getIsAudit() { return is_audit; } public StudentAcademicCredentialSimpleResponse setIsAudit(Boolean value) { this.is_audit = value; return this; } public Boolean getIsPassFail() { return is_pass_fail; } public StudentAcademicCredentialSimpleResponse setIsPassFail(Boolean value) { this.is_pass_fail = value; return this; } public Boolean getIsGraded() { return is_graded; } public StudentAcademicCredentialSimpleResponse setIsGraded(Boolean value) { this.is_graded = value; return this; } } public static class PersonSimpleResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public Integer ubc_id = null; public String uuid = null; public String regent_login = null; public String first_name = null; public String preferred_name = null; public String middle_name = null; public String last_name = null; public String email = null; public String phone_home = null; public String phone_cell = null; public String phone_bus = null; public String addr1 = null; public String addr2 = null; public String city = null; public String state = null; public String country = null; public String code = null; public String citizenship = null; public String citizenship_other = null; public String permanent_resident = null; public Date dob = null; public Boolean is_student = null; public Boolean is_faculty = null; public Boolean is_vendor = null; public ResponseStatus getResponseStatus() { return responseStatus; } public PersonSimpleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public PersonSimpleResponse setRegentId(Integer value) { this.regent_id = value; return this; } public Integer getUbcId() { return ubc_id; } public PersonSimpleResponse setUbcId(Integer value) { this.ubc_id = value; return this; } public String getUuid() { return uuid; } public PersonSimpleResponse setUuid(String value) { this.uuid = value; return this; } public String getRegentLogin() { return regent_login; } public PersonSimpleResponse setRegentLogin(String value) { this.regent_login = value; return this; } public String getFirstName() { return first_name; } public PersonSimpleResponse setFirstName(String value) { this.first_name = value; return this; } public String getPreferredName() { return preferred_name; } public PersonSimpleResponse setPreferredName(String value) { this.preferred_name = value; return this; } public String getMiddleName() { return middle_name; } public PersonSimpleResponse setMiddleName(String value) { this.middle_name = value; return this; } public String getLastName() { return last_name; } public PersonSimpleResponse setLastName(String value) { this.last_name = value; return this; } public String getEmail() { return email; } public PersonSimpleResponse setEmail(String value) { this.email = value; return this; } public String getPhoneHome() { return phone_home; } public PersonSimpleResponse setPhoneHome(String value) { this.phone_home = value; return this; } public String getPhoneCell() { return phone_cell; } public PersonSimpleResponse setPhoneCell(String value) { this.phone_cell = value; return this; } public String getPhoneBus() { return phone_bus; } public PersonSimpleResponse setPhoneBus(String value) { this.phone_bus = value; return this; } public String getAddr1() { return addr1; } public PersonSimpleResponse setAddr1(String value) { this.addr1 = value; return this; } public String getAddr2() { return addr2; } public PersonSimpleResponse setAddr2(String value) { this.addr2 = value; return this; } public String getCity() { return city; } public PersonSimpleResponse setCity(String value) { this.city = value; return this; } public String getState() { return state; } public PersonSimpleResponse setState(String value) { this.state = value; return this; } public String getCountry() { return country; } public PersonSimpleResponse setCountry(String value) { this.country = value; return this; } public String getCode() { return code; } public PersonSimpleResponse setCode(String value) { this.code = value; return this; } public String getCitizenship() { return citizenship; } public PersonSimpleResponse setCitizenship(String value) { this.citizenship = value; return this; } public String getCitizenshipOther() { return citizenship_other; } public PersonSimpleResponse setCitizenshipOther(String value) { this.citizenship_other = value; return this; } public String getPermanentResident() { return permanent_resident; } public PersonSimpleResponse setPermanentResident(String value) { this.permanent_resident = value; return this; } public Date getDob() { return dob; } public PersonSimpleResponse setDob(Date value) { this.dob = value; return this; } public Boolean getIsStudent() { return is_student; } public PersonSimpleResponse setIsStudent(Boolean value) { this.is_student = value; return this; } public Boolean getIsFaculty() { return is_faculty; } public PersonSimpleResponse setIsFaculty(Boolean value) { this.is_faculty = value; return this; } public Boolean getIsVendor() { return is_vendor; } public PersonSimpleResponse setIsVendor(Boolean value) { this.is_vendor = value; return this; } } public static class ProvisionalRegistrationsForStudentResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public String uuid = null; public ArrayList provisional_registrations = null; public ResponseStatus getResponseStatus() { return responseStatus; } public ProvisionalRegistrationsForStudentResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public ProvisionalRegistrationsForStudentResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getUuid() { return uuid; } public ProvisionalRegistrationsForStudentResponse setUuid(String value) { this.uuid = value; return this; } public ArrayList getProvisionalRegistrations() { return provisional_registrations; } public ProvisionalRegistrationsForStudentResponse setProvisionalRegistrations(ArrayList value) { this.provisional_registrations = value; return this; } } }