/* Options: Date: 2024-12-29 02:48:26 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: ProvisionalRegistrationAuthorizeRequest.* //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/Provisional/{student_section_uuid}/Authorize", Verbs="POST") public static class ProvisionalRegistrationAuthorizeRequest implements IReturn { public String student_section_uuid = null; public String authorizing_uuid = null; public String getStudentSectionUuid() { return student_section_uuid; } public ProvisionalRegistrationAuthorizeRequest setStudentSectionUuid(String value) { this.student_section_uuid = value; return this; } public String getAuthorizingUuid() { return authorizing_uuid; } public ProvisionalRegistrationAuthorizeRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } private static Object responseType = AddRegistrationsResponse.class; public Object getResponseType() { return responseType; } } public static class AddRegistrationsResponse extends InvoiceResponse { public String transaction_uuid = null; public ArrayList studentSectionInvoiceItems = null; public HashMap> sectionRates = null; public InvoiceItemAdminResponse creditTuitionRate = null; public InvoiceItemAdminResponse auditTuitionRate = null; public Integer studentAge = null; public Integer studentAgeAtEarliestSectionStartDate = null; public Boolean isRegentGrad = null; public Boolean isOnlyUnclassified = null; public Boolean canRegisterForAuditInTerm = null; public Boolean canRegisterForCreditInTerm = null; public ArrayList messages = null; public BigDecimal currentTermAuditHours = null; public BigDecimal currentTermCreditHours = null; public BigDecimal totalCreditHours = null; public ArrayList availableInvoiceItems = null; public ArrayList availableBenefits = null; public String getTransactionUuid() { return transaction_uuid; } public AddRegistrationsResponse setTransactionUuid(String value) { this.transaction_uuid = value; return this; } public ArrayList getStudentSectionInvoiceItems() { return studentSectionInvoiceItems; } public AddRegistrationsResponse setStudentSectionInvoiceItems(ArrayList value) { this.studentSectionInvoiceItems = value; return this; } public HashMap> getSectionRates() { return sectionRates; } public AddRegistrationsResponse setSectionRates(HashMap> value) { this.sectionRates = value; return this; } public InvoiceItemAdminResponse getCreditTuitionRate() { return creditTuitionRate; } public AddRegistrationsResponse setCreditTuitionRate(InvoiceItemAdminResponse value) { this.creditTuitionRate = value; return this; } public InvoiceItemAdminResponse getAuditTuitionRate() { return auditTuitionRate; } public AddRegistrationsResponse setAuditTuitionRate(InvoiceItemAdminResponse value) { this.auditTuitionRate = value; return this; } public Integer getStudentAge() { return studentAge; } public AddRegistrationsResponse setStudentAge(Integer value) { this.studentAge = value; return this; } public Integer getStudentAgeAtEarliestSectionStartDate() { return studentAgeAtEarliestSectionStartDate; } public AddRegistrationsResponse setStudentAgeAtEarliestSectionStartDate(Integer value) { this.studentAgeAtEarliestSectionStartDate = value; return this; } public Boolean getIsRegentGrad() { return isRegentGrad; } public AddRegistrationsResponse setIsRegentGrad(Boolean value) { this.isRegentGrad = value; return this; } public Boolean getIsOnlyUnclassified() { return isOnlyUnclassified; } public AddRegistrationsResponse setIsOnlyUnclassified(Boolean value) { this.isOnlyUnclassified = value; return this; } public Boolean isCanRegisterForAuditInTerm() { return canRegisterForAuditInTerm; } public AddRegistrationsResponse setCanRegisterForAuditInTerm(Boolean value) { this.canRegisterForAuditInTerm = value; return this; } public Boolean isCanRegisterForCreditInTerm() { return canRegisterForCreditInTerm; } public AddRegistrationsResponse setCanRegisterForCreditInTerm(Boolean value) { this.canRegisterForCreditInTerm = value; return this; } public ArrayList getMessages() { return messages; } public AddRegistrationsResponse setMessages(ArrayList value) { this.messages = value; return this; } public BigDecimal getCurrentTermAuditHours() { return currentTermAuditHours; } public AddRegistrationsResponse setCurrentTermAuditHours(BigDecimal value) { this.currentTermAuditHours = value; return this; } public BigDecimal getCurrentTermCreditHours() { return currentTermCreditHours; } public AddRegistrationsResponse setCurrentTermCreditHours(BigDecimal value) { this.currentTermCreditHours = value; return this; } public BigDecimal getTotalCreditHours() { return totalCreditHours; } public AddRegistrationsResponse setTotalCreditHours(BigDecimal value) { this.totalCreditHours = value; return this; } public ArrayList getAvailableInvoiceItems() { return availableInvoiceItems; } public AddRegistrationsResponse setAvailableInvoiceItems(ArrayList value) { this.availableInvoiceItems = value; return this; } public ArrayList getAvailableBenefits() { return availableBenefits; } public AddRegistrationsResponse setAvailableBenefits(ArrayList value) { this.availableBenefits = value; return this; } } public static class InvoiceItemAdminResponse { public ResponseStatus responseStatus = null; public String invoiceItemUUID = null; public Integer rate_id = null; public String rate_code = null; public String rate_description = null; public Boolean is_required = null; public Boolean is_optional = null; public BigDecimal charge = null; public BigDecimal credit = null; public ResponseStatus getResponseStatus() { return responseStatus; } public InvoiceItemAdminResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getInvoiceItemUUID() { return invoiceItemUUID; } public InvoiceItemAdminResponse setInvoiceItemUUID(String value) { this.invoiceItemUUID = value; return this; } public Integer getRateId() { return rate_id; } public InvoiceItemAdminResponse setRateId(Integer value) { this.rate_id = value; return this; } public String getRateCode() { return rate_code; } public InvoiceItemAdminResponse setRateCode(String value) { this.rate_code = value; return this; } public String getRateDescription() { return rate_description; } public InvoiceItemAdminResponse setRateDescription(String value) { this.rate_description = value; return this; } public Boolean getIsRequired() { return is_required; } public InvoiceItemAdminResponse setIsRequired(Boolean value) { this.is_required = value; return this; } public Boolean getIsOptional() { return is_optional; } public InvoiceItemAdminResponse setIsOptional(Boolean value) { this.is_optional = value; return this; } public BigDecimal getCharge() { return charge; } public InvoiceItemAdminResponse setCharge(BigDecimal value) { this.charge = value; return this; } public BigDecimal getCredit() { return credit; } public InvoiceItemAdminResponse setCredit(BigDecimal value) { this.credit = value; return this; } } public static class StudentSectionInvoiceItemResponse extends InvoiceItemResponse { public StudentSectionResponse studentSection = null; public StudentSectionResponse getStudentSection() { return studentSection; } public StudentSectionInvoiceItemResponse setStudentSection(StudentSectionResponse value) { this.studentSection = value; return this; } } public static class BenefitResponse { public Integer rate_id = null; public String rate_code = null; public String rate_description = null; public BigDecimal percentage_rate = null; public Boolean is_optional = null; public Boolean is_required = null; public Integer getRateId() { return rate_id; } public BenefitResponse setRateId(Integer value) { this.rate_id = value; return this; } public String getRateCode() { return rate_code; } public BenefitResponse setRateCode(String value) { this.rate_code = value; return this; } public String getRateDescription() { return rate_description; } public BenefitResponse setRateDescription(String value) { this.rate_description = value; return this; } public BigDecimal getPercentageRate() { return percentage_rate; } public BenefitResponse setPercentageRate(BigDecimal value) { this.percentage_rate = value; return this; } public Boolean getIsOptional() { return is_optional; } public BenefitResponse setIsOptional(Boolean value) { this.is_optional = value; return this; } public Boolean getIsRequired() { return is_required; } public BenefitResponse setIsRequired(Boolean value) { this.is_required = value; return this; } } public static class InvoiceResponse { public ResponseStatus responseStatus = null; public String invoiceUUID = null; public Integer regent_id = null; public String uuid = null; public String reporting_term = null; public BigDecimal total_charges = null; public BigDecimal total_credits = null; public String current_status = null; public Date timestamp = null; public ResponseStatus getResponseStatus() { return responseStatus; } public InvoiceResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getInvoiceUUID() { return invoiceUUID; } public InvoiceResponse setInvoiceUUID(String value) { this.invoiceUUID = value; return this; } public Integer getRegentId() { return regent_id; } public InvoiceResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getUuid() { return uuid; } public InvoiceResponse setUuid(String value) { this.uuid = value; return this; } public String getReportingTerm() { return reporting_term; } public InvoiceResponse setReportingTerm(String value) { this.reporting_term = value; return this; } public BigDecimal getTotalCharges() { return total_charges; } public InvoiceResponse setTotalCharges(BigDecimal value) { this.total_charges = value; return this; } public BigDecimal getTotalCredits() { return total_credits; } public InvoiceResponse setTotalCredits(BigDecimal value) { this.total_credits = value; return this; } public String getCurrentStatus() { return current_status; } public InvoiceResponse setCurrentStatus(String value) { this.current_status = value; return this; } public Date getTimestamp() { return timestamp; } public InvoiceResponse setTimestamp(Date value) { this.timestamp = value; return this; } } public static class InvoiceItemResponse { public ResponseStatus responseStatus = null; public String invoiceItemUUID = null; public Integer rate_id = null; public String rate_code = null; public String rate_description = null; public BigDecimal charge = null; public BigDecimal credit = null; public ResponseStatus getResponseStatus() { return responseStatus; } public InvoiceItemResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getInvoiceItemUUID() { return invoiceItemUUID; } public InvoiceItemResponse setInvoiceItemUUID(String value) { this.invoiceItemUUID = value; return this; } public Integer getRateId() { return rate_id; } public InvoiceItemResponse setRateId(Integer value) { this.rate_id = value; return this; } public String getRateCode() { return rate_code; } public InvoiceItemResponse setRateCode(String value) { this.rate_code = value; return this; } public String getRateDescription() { return rate_description; } public InvoiceItemResponse setRateDescription(String value) { this.rate_description = value; return this; } public BigDecimal getCharge() { return charge; } public InvoiceItemResponse setCharge(BigDecimal value) { this.charge = value; return this; } public BigDecimal getCredit() { return credit; } public InvoiceItemResponse setCredit(BigDecimal value) { this.credit = value; return this; } } public static class StudentSectionResponse extends SectionResponse { public String studentSectionUUID = null; public BigDecimal registered_amount = null; public Boolean is_provisional = null; public Boolean is_audit = null; public String getStudentSectionUUID() { return studentSectionUUID; } public StudentSectionResponse setStudentSectionUUID(String value) { this.studentSectionUUID = value; return this; } public BigDecimal getRegisteredAmount() { return registered_amount; } public StudentSectionResponse setRegisteredAmount(BigDecimal value) { this.registered_amount = value; return this; } public Boolean getIsProvisional() { return is_provisional; } public StudentSectionResponse setIsProvisional(Boolean value) { this.is_provisional = value; return this; } public Boolean getIsAudit() { return is_audit; } public StudentSectionResponse setIsAudit(Boolean value) { this.is_audit = value; return this; } } public static class SectionResponse { public ResponseStatus responseStatus = null; public String secUUID = null; public String course_name = null; public String section_code = null; public String course_title = null; public String course_short_title = null; public String course_description = null; public String crosslist_description = null; public String crosslist_course_name = null; public String location_long_name = null; public String room = null; public ArrayList instructors = null; public ArrayList required_documents = null; public Date start_date = null; public Date end_date = null; public Date first_meeting_date = null; public Date last_meeting_date = null; public String meeting_days = null; public ArrayList start_times = null; public ArrayList end_times = null; public Boolean is_online_only = null; public Boolean is_weekend = null; public Boolean is_weekday = null; public Boolean is_evening = null; public Boolean is_waitlist = null; public Boolean has_special_requirements = null; public String special_requirements = null; public Boolean is_unlisted = null; public ArrayList credit_amounts = null; public ArrayList audit_amounts = null; public String audits_short_name = null; public String audits_long_name = null; public String credits_short_name = null; public String credits_long_name = null; public String distance_ed_materials = null; public String prerequisites = null; public String corequisites = null; public Integer capacity = null; public BigDecimal flat_fee_amount = null; public BigDecimal additional_fee_amount = null; public Integer registered_students = null; public Integer three_credit_plus = null; public Integer two_credit = null; public Integer one_credit = null; public Integer three_audit_plus = null; public Integer two_audit = null; public Integer one_audit = null; public Integer crosslist_registered_students = null; public Integer grades_received = null; public Integer crosslist_grades_received = null; public Date registration_start_date = null; public Date registration_end_date = null; public Date add_start_date = null; public Date add_end_date = null; public Date drop_start_date = null; public Date drop_end_date = null; public Date grading_end_date = null; public String term = null; public String reporting_term = null; public Integer reporting_year = null; public String current_status = null; public String added_by = null; public Date added_date = null; public String changed_by = null; public Date changed_date = null; public Date timestamp = null; public ResponseStatus getResponseStatus() { return responseStatus; } public SectionResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getSecUUID() { return secUUID; } public SectionResponse setSecUUID(String value) { this.secUUID = value; return this; } public String getCourseName() { return course_name; } public SectionResponse setCourseName(String value) { this.course_name = value; return this; } public String getSectionCode() { return section_code; } public SectionResponse setSectionCode(String value) { this.section_code = value; return this; } public String getCourseTitle() { return course_title; } public SectionResponse setCourseTitle(String value) { this.course_title = value; return this; } public String getCourseShortTitle() { return course_short_title; } public SectionResponse setCourseShortTitle(String value) { this.course_short_title = value; return this; } public String getCourseDescription() { return course_description; } public SectionResponse setCourseDescription(String value) { this.course_description = value; return this; } public String getCrosslistDescription() { return crosslist_description; } public SectionResponse setCrosslistDescription(String value) { this.crosslist_description = value; return this; } public String getCrosslistCourseName() { return crosslist_course_name; } public SectionResponse setCrosslistCourseName(String value) { this.crosslist_course_name = value; return this; } public String getLocationLongName() { return location_long_name; } public SectionResponse setLocationLongName(String value) { this.location_long_name = value; return this; } public String getRoom() { return room; } public SectionResponse setRoom(String value) { this.room = value; return this; } public ArrayList getInstructors() { return instructors; } public SectionResponse setInstructors(ArrayList value) { this.instructors = value; return this; } public ArrayList getRequiredDocuments() { return required_documents; } public SectionResponse setRequiredDocuments(ArrayList value) { this.required_documents = value; return this; } public Date getStartDate() { return start_date; } public SectionResponse setStartDate(Date value) { this.start_date = value; return this; } public Date getEndDate() { return end_date; } public SectionResponse setEndDate(Date value) { this.end_date = value; return this; } public Date getFirstMeetingDate() { return first_meeting_date; } public SectionResponse setFirstMeetingDate(Date value) { this.first_meeting_date = value; return this; } public Date getLastMeetingDate() { return last_meeting_date; } public SectionResponse setLastMeetingDate(Date value) { this.last_meeting_date = value; return this; } public String getMeetingDays() { return meeting_days; } public SectionResponse setMeetingDays(String value) { this.meeting_days = value; return this; } public ArrayList getStartTimes() { return start_times; } public SectionResponse setStartTimes(ArrayList value) { this.start_times = value; return this; } public ArrayList getEndTimes() { return end_times; } public SectionResponse setEndTimes(ArrayList value) { this.end_times = value; return this; } public Boolean getIsOnlineOnly() { return is_online_only; } public SectionResponse setIsOnlineOnly(Boolean value) { this.is_online_only = value; return this; } public Boolean getIsWeekend() { return is_weekend; } public SectionResponse setIsWeekend(Boolean value) { this.is_weekend = value; return this; } public Boolean getIsWeekday() { return is_weekday; } public SectionResponse setIsWeekday(Boolean value) { this.is_weekday = value; return this; } public Boolean getIsEvening() { return is_evening; } public SectionResponse setIsEvening(Boolean value) { this.is_evening = value; return this; } public Boolean getIsWaitlist() { return is_waitlist; } public SectionResponse setIsWaitlist(Boolean value) { this.is_waitlist = value; return this; } public Boolean isHasSpecialRequirements() { return has_special_requirements; } public SectionResponse setHasSpecialRequirements(Boolean value) { this.has_special_requirements = value; return this; } public String getSpecialRequirements() { return special_requirements; } public SectionResponse setSpecialRequirements(String value) { this.special_requirements = value; return this; } public Boolean getIsUnlisted() { return is_unlisted; } public SectionResponse setIsUnlisted(Boolean value) { this.is_unlisted = value; return this; } public ArrayList getCreditAmounts() { return credit_amounts; } public SectionResponse setCreditAmounts(ArrayList value) { this.credit_amounts = value; return this; } public ArrayList getAuditAmounts() { return audit_amounts; } public SectionResponse setAuditAmounts(ArrayList value) { this.audit_amounts = value; return this; } public String getAuditsShortName() { return audits_short_name; } public SectionResponse setAuditsShortName(String value) { this.audits_short_name = value; return this; } public String getAuditsLongName() { return audits_long_name; } public SectionResponse setAuditsLongName(String value) { this.audits_long_name = value; return this; } public String getCreditsShortName() { return credits_short_name; } public SectionResponse setCreditsShortName(String value) { this.credits_short_name = value; return this; } public String getCreditsLongName() { return credits_long_name; } public SectionResponse setCreditsLongName(String value) { this.credits_long_name = value; return this; } public String getDistanceEdMaterials() { return distance_ed_materials; } public SectionResponse setDistanceEdMaterials(String value) { this.distance_ed_materials = value; return this; } public String getPrerequisites() { return prerequisites; } public SectionResponse setPrerequisites(String value) { this.prerequisites = value; return this; } public String getCorequisites() { return corequisites; } public SectionResponse setCorequisites(String value) { this.corequisites = value; return this; } public Integer getCapacity() { return capacity; } public SectionResponse setCapacity(Integer value) { this.capacity = value; return this; } public BigDecimal getFlatFeeAmount() { return flat_fee_amount; } public SectionResponse setFlatFeeAmount(BigDecimal value) { this.flat_fee_amount = value; return this; } public BigDecimal getAdditionalFeeAmount() { return additional_fee_amount; } public SectionResponse setAdditionalFeeAmount(BigDecimal value) { this.additional_fee_amount = value; return this; } public Integer getRegisteredStudents() { return registered_students; } public SectionResponse setRegisteredStudents(Integer value) { this.registered_students = value; return this; } public Integer getThreeCreditPlus() { return three_credit_plus; } public SectionResponse setThreeCreditPlus(Integer value) { this.three_credit_plus = value; return this; } public Integer getTwoCredit() { return two_credit; } public SectionResponse setTwoCredit(Integer value) { this.two_credit = value; return this; } public Integer getOneCredit() { return one_credit; } public SectionResponse setOneCredit(Integer value) { this.one_credit = value; return this; } public Integer getThreeAuditPlus() { return three_audit_plus; } public SectionResponse setThreeAuditPlus(Integer value) { this.three_audit_plus = value; return this; } public Integer getTwoAudit() { return two_audit; } public SectionResponse setTwoAudit(Integer value) { this.two_audit = value; return this; } public Integer getOneAudit() { return one_audit; } public SectionResponse setOneAudit(Integer value) { this.one_audit = value; return this; } public Integer getCrosslistRegisteredStudents() { return crosslist_registered_students; } public SectionResponse setCrosslistRegisteredStudents(Integer value) { this.crosslist_registered_students = value; return this; } public Integer getGradesReceived() { return grades_received; } public SectionResponse setGradesReceived(Integer value) { this.grades_received = value; return this; } public Integer getCrosslistGradesReceived() { return crosslist_grades_received; } public SectionResponse setCrosslistGradesReceived(Integer value) { this.crosslist_grades_received = value; return this; } public Date getRegistrationStartDate() { return registration_start_date; } public SectionResponse setRegistrationStartDate(Date value) { this.registration_start_date = value; return this; } public Date getRegistrationEndDate() { return registration_end_date; } public SectionResponse setRegistrationEndDate(Date value) { this.registration_end_date = value; return this; } public Date getAddStartDate() { return add_start_date; } public SectionResponse setAddStartDate(Date value) { this.add_start_date = value; return this; } public Date getAddEndDate() { return add_end_date; } public SectionResponse setAddEndDate(Date value) { this.add_end_date = value; return this; } public Date getDropStartDate() { return drop_start_date; } public SectionResponse setDropStartDate(Date value) { this.drop_start_date = value; return this; } public Date getDropEndDate() { return drop_end_date; } public SectionResponse setDropEndDate(Date value) { this.drop_end_date = value; return this; } public Date getGradingEndDate() { return grading_end_date; } public SectionResponse setGradingEndDate(Date value) { this.grading_end_date = value; return this; } public String getTerm() { return term; } public SectionResponse setTerm(String value) { this.term = value; return this; } public String getReportingTerm() { return reporting_term; } public SectionResponse setReportingTerm(String value) { this.reporting_term = value; return this; } public Integer getReportingYear() { return reporting_year; } public SectionResponse setReportingYear(Integer value) { this.reporting_year = value; return this; } public String getCurrentStatus() { return current_status; } public SectionResponse setCurrentStatus(String value) { this.current_status = value; return this; } public String getAddedBy() { return added_by; } public SectionResponse setAddedBy(String value) { this.added_by = value; return this; } public Date getAddedDate() { return added_date; } public SectionResponse setAddedDate(Date value) { this.added_date = value; return this; } public String getChangedBy() { return changed_by; } public SectionResponse setChangedBy(String value) { this.changed_by = value; return this; } public Date getChangedDate() { return changed_date; } public SectionResponse setChangedDate(Date value) { this.changed_date = value; return this; } public Date getTimestamp() { return timestamp; } public SectionResponse setTimestamp(Date value) { this.timestamp = value; return this; } } }