/* Options: Date: 2025-04-10 08:58:01 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: FinancialAidApplicationUpsertRequest.* //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="/Finance/FinancialAid/Application/Upsert/New", Verbs="POST") // @Route(Path="/Finance/FinancialAid/Application/{application_uuid}/Upsert", Verbs="POST") public static class FinancialAidApplicationUpsertRequest implements IReturn { public String uuid = null; public String application_uuid = null; public String authorizing_uuid = null; public String citizenship = null; public String citizenship_other = null; public String permanent_resident = null; public String marital_status = null; public String gender = null; public String denomination = null; public String ethnicity = null; public String program = null; public String start_term = null; public String end_term = null; public Integer number_of_terms = null; public BigDecimal financial_assets = null; public BigDecimal spouse_income = null; public Integer number_of_children = null; public Integer employment_years = null; public String employment_description = null; public String vocational_experience_json = null; public String vocational_direction_json = null; public String occupation_after_the_program_json = null; public String area_of_study_json = null; public BigDecimal undergrad_gpa = null; public BigDecimal regent_gpa = null; public Boolean is_mature = null; public Boolean is_nonaccredited = null; public BigDecimal award_per_term = null; public BigDecimal amount_awarded = null; public Integer need_score = null; public Integer merit_score = null; public String current_status = null; public String comments = null; public String getUuid() { return uuid; } public FinancialAidApplicationUpsertRequest setUuid(String value) { this.uuid = value; return this; } public String getApplicationUuid() { return application_uuid; } public FinancialAidApplicationUpsertRequest setApplicationUuid(String value) { this.application_uuid = value; return this; } public String getAuthorizingUuid() { return authorizing_uuid; } public FinancialAidApplicationUpsertRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } public String getCitizenship() { return citizenship; } public FinancialAidApplicationUpsertRequest setCitizenship(String value) { this.citizenship = value; return this; } public String getCitizenshipOther() { return citizenship_other; } public FinancialAidApplicationUpsertRequest setCitizenshipOther(String value) { this.citizenship_other = value; return this; } public String getPermanentResident() { return permanent_resident; } public FinancialAidApplicationUpsertRequest setPermanentResident(String value) { this.permanent_resident = value; return this; } public String getMaritalStatus() { return marital_status; } public FinancialAidApplicationUpsertRequest setMaritalStatus(String value) { this.marital_status = value; return this; } public String getGender() { return gender; } public FinancialAidApplicationUpsertRequest setGender(String value) { this.gender = value; return this; } public String getDenomination() { return denomination; } public FinancialAidApplicationUpsertRequest setDenomination(String value) { this.denomination = value; return this; } public String getEthnicity() { return ethnicity; } public FinancialAidApplicationUpsertRequest setEthnicity(String value) { this.ethnicity = value; return this; } public String getProgram() { return program; } public FinancialAidApplicationUpsertRequest setProgram(String value) { this.program = value; return this; } public String getStartTerm() { return start_term; } public FinancialAidApplicationUpsertRequest setStartTerm(String value) { this.start_term = value; return this; } public String getEndTerm() { return end_term; } public FinancialAidApplicationUpsertRequest setEndTerm(String value) { this.end_term = value; return this; } public Integer getNumberOfTerms() { return number_of_terms; } public FinancialAidApplicationUpsertRequest setNumberOfTerms(Integer value) { this.number_of_terms = value; return this; } public BigDecimal getFinancialAssets() { return financial_assets; } public FinancialAidApplicationUpsertRequest setFinancialAssets(BigDecimal value) { this.financial_assets = value; return this; } public BigDecimal getSpouseIncome() { return spouse_income; } public FinancialAidApplicationUpsertRequest setSpouseIncome(BigDecimal value) { this.spouse_income = value; return this; } public Integer getNumberOfChildren() { return number_of_children; } public FinancialAidApplicationUpsertRequest setNumberOfChildren(Integer value) { this.number_of_children = value; return this; } public Integer getEmploymentYears() { return employment_years; } public FinancialAidApplicationUpsertRequest setEmploymentYears(Integer value) { this.employment_years = value; return this; } public String getEmploymentDescription() { return employment_description; } public FinancialAidApplicationUpsertRequest setEmploymentDescription(String value) { this.employment_description = value; return this; } public String getVocationalExperienceJson() { return vocational_experience_json; } public FinancialAidApplicationUpsertRequest setVocationalExperienceJson(String value) { this.vocational_experience_json = value; return this; } public String getVocationalDirectionJson() { return vocational_direction_json; } public FinancialAidApplicationUpsertRequest setVocationalDirectionJson(String value) { this.vocational_direction_json = value; return this; } public String getOccupationAfterTheProgramJson() { return occupation_after_the_program_json; } public FinancialAidApplicationUpsertRequest setOccupationAfterTheProgramJson(String value) { this.occupation_after_the_program_json = value; return this; } public String getAreaOfStudyJson() { return area_of_study_json; } public FinancialAidApplicationUpsertRequest setAreaOfStudyJson(String value) { this.area_of_study_json = value; return this; } public BigDecimal getUndergradGpa() { return undergrad_gpa; } public FinancialAidApplicationUpsertRequest setUndergradGpa(BigDecimal value) { this.undergrad_gpa = value; return this; } public BigDecimal getRegentGpa() { return regent_gpa; } public FinancialAidApplicationUpsertRequest setRegentGpa(BigDecimal value) { this.regent_gpa = value; return this; } public Boolean getIsMature() { return is_mature; } public FinancialAidApplicationUpsertRequest setIsMature(Boolean value) { this.is_mature = value; return this; } public Boolean getIsNonaccredited() { return is_nonaccredited; } public FinancialAidApplicationUpsertRequest setIsNonaccredited(Boolean value) { this.is_nonaccredited = value; return this; } public BigDecimal getAwardPerTerm() { return award_per_term; } public FinancialAidApplicationUpsertRequest setAwardPerTerm(BigDecimal value) { this.award_per_term = value; return this; } public BigDecimal getAmountAwarded() { return amount_awarded; } public FinancialAidApplicationUpsertRequest setAmountAwarded(BigDecimal value) { this.amount_awarded = value; return this; } public Integer getNeedScore() { return need_score; } public FinancialAidApplicationUpsertRequest setNeedScore(Integer value) { this.need_score = value; return this; } public Integer getMeritScore() { return merit_score; } public FinancialAidApplicationUpsertRequest setMeritScore(Integer value) { this.merit_score = value; return this; } public String getCurrentStatus() { return current_status; } public FinancialAidApplicationUpsertRequest setCurrentStatus(String value) { this.current_status = value; return this; } public String getComments() { return comments; } public FinancialAidApplicationUpsertRequest setComments(String value) { this.comments = value; return this; } private static Object responseType = ResponseStatus.class; public Object getResponseType() { return responseType; } } @DataContract public static class ResponseStatus { @DataMember(Order=1) public String errorCode = null; @DataMember(Order=2) public String message = null; @DataMember(Order=3) public String stackTrace = null; @DataMember(Order=4) public ArrayList errors = null; @DataMember(Order=5) public HashMap meta = null; public String getErrorCode() { return errorCode; } public ResponseStatus setErrorCode(String value) { this.errorCode = value; return this; } public String getMessage() { return message; } public ResponseStatus setMessage(String value) { this.message = value; return this; } public String getStackTrace() { return stackTrace; } public ResponseStatus setStackTrace(String value) { this.stackTrace = value; return this; } public ArrayList getErrors() { return errors; } public ResponseStatus setErrors(ArrayList value) { this.errors = value; return this; } public HashMap getMeta() { return meta; } public ResponseStatus setMeta(HashMap value) { this.meta = value; return this; } } }