/* Options: Date: 2024-10-06 10:27:33 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: LetterSentRequest.* //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="/correspondence", Verbs="POST") public static class LetterSentRequest implements IReturn { public Integer pid = null; public Integer getPid() { return pid; } public LetterSentRequest setPid(Integer value) { this.pid = value; return this; } private static Object responseType = LetterSentResponse.class; public Object getResponseType() { return responseType; } } public static class LetterSentResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public String document_name = null; public String document_description = null; public String program = null; public String letter_status = null; public String application_status = null; public Date application_date = null; public Date added_date = null; public ResponseStatus getResponseStatus() { return responseStatus; } public LetterSentResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public LetterSentResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getDocumentName() { return document_name; } public LetterSentResponse setDocumentName(String value) { this.document_name = value; return this; } public String getDocumentDescription() { return document_description; } public LetterSentResponse setDocumentDescription(String value) { this.document_description = value; return this; } public String getProgram() { return program; } public LetterSentResponse setProgram(String value) { this.program = value; return this; } public String getLetterStatus() { return letter_status; } public LetterSentResponse setLetterStatus(String value) { this.letter_status = value; return this; } public String getApplicationStatus() { return application_status; } public LetterSentResponse setApplicationStatus(String value) { this.application_status = value; return this; } public Date getApplicationDate() { return application_date; } public LetterSentResponse setApplicationDate(Date value) { this.application_date = value; return this; } public Date getAddedDate() { return added_date; } public LetterSentResponse setAddedDate(Date value) { this.added_date = value; return this; } } }