/* Options: Date: 2024-10-06 10:27:30 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: StudentExemptionCredentialsRequest.* //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="/StudentExemptionCredentials/{uuid}", Verbs="POST") public static class StudentExemptionCredentialsRequest implements IReturn { public String uuid = null; public String getUuid() { return uuid; } public StudentExemptionCredentialsRequest setUuid(String value) { this.uuid = value; return this; } private static Object responseType = StudentExemptionCredentialsResponse.class; public Object getResponseType() { return responseType; } } public static class StudentExemptionCredentialsResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public String uuid = null; public ArrayList studentExemptionCredentials = null; public ResponseStatus getResponseStatus() { return responseStatus; } public StudentExemptionCredentialsResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public StudentExemptionCredentialsResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getUuid() { return uuid; } public StudentExemptionCredentialsResponse setUuid(String value) { this.uuid = value; return this; } public ArrayList getStudentExemptionCredentials() { return studentExemptionCredentials; } public StudentExemptionCredentialsResponse setStudentExemptionCredentials(ArrayList value) { this.studentExemptionCredentials = value; return this; } } public static class StudentExemptionCredentialResponse { public ResponseStatus responseStatus = null; public String uuid = null; public String exemption_uuid = null; public String course_name = null; public String title = null; public BigDecimal credit_value = null; public String added_by = null; public Date added_date = null; public String changed_by = null; public Date changed_date = null; public ResponseStatus getResponseStatus() { return responseStatus; } public StudentExemptionCredentialResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getUuid() { return uuid; } public StudentExemptionCredentialResponse setUuid(String value) { this.uuid = value; return this; } public String getExemptionUuid() { return exemption_uuid; } public StudentExemptionCredentialResponse setExemptionUuid(String value) { this.exemption_uuid = value; return this; } public String getCourseName() { return course_name; } public StudentExemptionCredentialResponse setCourseName(String value) { this.course_name = value; return this; } public String getTitle() { return title; } public StudentExemptionCredentialResponse setTitle(String value) { this.title = value; return this; } public BigDecimal getCreditValue() { return credit_value; } public StudentExemptionCredentialResponse setCreditValue(BigDecimal value) { this.credit_value = value; return this; } public String getAddedBy() { return added_by; } public StudentExemptionCredentialResponse setAddedBy(String value) { this.added_by = value; return this; } public Date getAddedDate() { return added_date; } public StudentExemptionCredentialResponse setAddedDate(Date value) { this.added_date = value; return this; } public String getChangedBy() { return changed_by; } public StudentExemptionCredentialResponse setChangedBy(String value) { this.changed_by = value; return this; } public Date getChangedDate() { return changed_date; } public StudentExemptionCredentialResponse setChangedDate(Date value) { this.changed_date = value; return this; } } }