/* Options: Date: 2025-04-10 08:44:19 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: StudentExemptionCredentialRequest.* //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}/{exemption_uuid}", Verbs="POST") public static class StudentExemptionCredentialRequest implements IReturn { public String uuid = null; public String exemption_uuid = null; public String getUuid() { return uuid; } public StudentExemptionCredentialRequest setUuid(String value) { this.uuid = value; return this; } public String getExemptionUuid() { return exemption_uuid; } public StudentExemptionCredentialRequest setExemptionUuid(String value) { this.exemption_uuid = value; return this; } private static Object responseType = StudentExemptionCredentialResponse.class; public Object getResponseType() { return responseType; } } 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; } } }