/* Options: Date: 2024-10-06 10:33:00 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: SectionDocumentsRequest.* //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="/Sections/{uuid}/Documents", Verbs="POST") public static class SectionDocumentsRequest implements IReturn { public String uuid = null; public String getUuid() { return uuid; } public SectionDocumentsRequest setUuid(String value) { this.uuid = value; return this; } private static Object responseType = SectionDocumentsResponse.class; public Object getResponseType() { return responseType; } } public static class SectionDocumentsResponse { public String uuid = null; public String course_name = null; public String title = null; public String term = null; public String reporting_term = null; public ArrayList assigned_documents = null; public ArrayList available_documents = null; public String getUuid() { return uuid; } public SectionDocumentsResponse setUuid(String value) { this.uuid = value; return this; } public String getCourseName() { return course_name; } public SectionDocumentsResponse setCourseName(String value) { this.course_name = value; return this; } public String getTitle() { return title; } public SectionDocumentsResponse setTitle(String value) { this.title = value; return this; } public String getTerm() { return term; } public SectionDocumentsResponse setTerm(String value) { this.term = value; return this; } public String getReportingTerm() { return reporting_term; } public SectionDocumentsResponse setReportingTerm(String value) { this.reporting_term = value; return this; } public ArrayList getAssignedDocuments() { return assigned_documents; } public SectionDocumentsResponse setAssignedDocuments(ArrayList value) { this.assigned_documents = value; return this; } public ArrayList getAvailableDocuments() { return available_documents; } public SectionDocumentsResponse setAvailableDocuments(ArrayList value) { this.available_documents = value; return this; } } public static class DocumentResponse { public String code = null; public String document_name = null; public String document_description = null; public String getCode() { return code; } public DocumentResponse setCode(String value) { this.code = value; return this; } public String getDocumentName() { return document_name; } public DocumentResponse setDocumentName(String value) { this.document_name = value; return this; } public String getDocumentDescription() { return document_description; } public DocumentResponse setDocumentDescription(String value) { this.document_description = value; return this; } } }