/* Options: Date: 2024-10-06 10:28:25 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: InstitutionCreateRequest.* //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="/Academic/Institution/Create", Verbs="POST") public static class InstitutionCreateRequest implements IReturn { public String institution_name = null; public String institution_other_names = null; public String institution_previous_names = null; public String institution_type = null; public String accreditation_status = null; public String accreditation_status_notes = null; public Date accreditation_status_changed_date = null; public String gpa_conversion = null; public String credit_hour_conversion = null; public String authorizing_uuid = null; public String getInstitutionName() { return institution_name; } public InstitutionCreateRequest setInstitutionName(String value) { this.institution_name = value; return this; } public String getInstitutionOtherNames() { return institution_other_names; } public InstitutionCreateRequest setInstitutionOtherNames(String value) { this.institution_other_names = value; return this; } public String getInstitutionPreviousNames() { return institution_previous_names; } public InstitutionCreateRequest setInstitutionPreviousNames(String value) { this.institution_previous_names = value; return this; } public String getInstitutionType() { return institution_type; } public InstitutionCreateRequest setInstitutionType(String value) { this.institution_type = value; return this; } public String getAccreditationStatus() { return accreditation_status; } public InstitutionCreateRequest setAccreditationStatus(String value) { this.accreditation_status = value; return this; } public String getAccreditationStatusNotes() { return accreditation_status_notes; } public InstitutionCreateRequest setAccreditationStatusNotes(String value) { this.accreditation_status_notes = value; return this; } public Date getAccreditationStatusChangedDate() { return accreditation_status_changed_date; } public InstitutionCreateRequest setAccreditationStatusChangedDate(Date value) { this.accreditation_status_changed_date = value; return this; } public String getGpaConversion() { return gpa_conversion; } public InstitutionCreateRequest setGpaConversion(String value) { this.gpa_conversion = value; return this; } public String getCreditHourConversion() { return credit_hour_conversion; } public InstitutionCreateRequest setCreditHourConversion(String value) { this.credit_hour_conversion = value; return this; } public String getAuthorizingUuid() { return authorizing_uuid; } public InstitutionCreateRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } private static Object responseType = InstitutionResponse.class; public Object getResponseType() { return responseType; } } public static class InstitutionResponse { public ResponseStatus responseStatus = null; public Integer institution_id = null; public String institution_name = null; public String institution_previous_names = null; public String institution_other_names = null; public String institution_type = null; public String accreditation_status = null; public String accreditation_status_notes = null; public ArrayList related_institutions = null; public Date accreditation_status_changed_date = null; public String gpa_conversion = null; public String credit_hour_conversion = null; public String addr1 = null; public String addr2 = null; public String city = null; public String state = null; public String country = null; public String zip = null; public ResponseStatus getResponseStatus() { return responseStatus; } public InstitutionResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getInstitutionId() { return institution_id; } public InstitutionResponse setInstitutionId(Integer value) { this.institution_id = value; return this; } public String getInstitutionName() { return institution_name; } public InstitutionResponse setInstitutionName(String value) { this.institution_name = value; return this; } public String getInstitutionPreviousNames() { return institution_previous_names; } public InstitutionResponse setInstitutionPreviousNames(String value) { this.institution_previous_names = value; return this; } public String getInstitutionOtherNames() { return institution_other_names; } public InstitutionResponse setInstitutionOtherNames(String value) { this.institution_other_names = value; return this; } public String getInstitutionType() { return institution_type; } public InstitutionResponse setInstitutionType(String value) { this.institution_type = value; return this; } public String getAccreditationStatus() { return accreditation_status; } public InstitutionResponse setAccreditationStatus(String value) { this.accreditation_status = value; return this; } public String getAccreditationStatusNotes() { return accreditation_status_notes; } public InstitutionResponse setAccreditationStatusNotes(String value) { this.accreditation_status_notes = value; return this; } public ArrayList getRelatedInstitutions() { return related_institutions; } public InstitutionResponse setRelatedInstitutions(ArrayList value) { this.related_institutions = value; return this; } public Date getAccreditationStatusChangedDate() { return accreditation_status_changed_date; } public InstitutionResponse setAccreditationStatusChangedDate(Date value) { this.accreditation_status_changed_date = value; return this; } public String getGpaConversion() { return gpa_conversion; } public InstitutionResponse setGpaConversion(String value) { this.gpa_conversion = value; return this; } public String getCreditHourConversion() { return credit_hour_conversion; } public InstitutionResponse setCreditHourConversion(String value) { this.credit_hour_conversion = value; return this; } public String getAddr1() { return addr1; } public InstitutionResponse setAddr1(String value) { this.addr1 = value; return this; } public String getAddr2() { return addr2; } public InstitutionResponse setAddr2(String value) { this.addr2 = value; return this; } public String getCity() { return city; } public InstitutionResponse setCity(String value) { this.city = value; return this; } public String getState() { return state; } public InstitutionResponse setState(String value) { this.state = value; return this; } public String getCountry() { return country; } public InstitutionResponse setCountry(String value) { this.country = value; return this; } public String getZip() { return zip; } public InstitutionResponse setZip(String value) { this.zip = value; return this; } } }