/* Options: Date: 2024-10-06 10:28:05 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: DropSubmitRequest.* //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="/Registration/Drop/{uuid}/Term/{reporting_term}/Submit", Verbs="POST") public static class DropSubmitRequest implements IReturn { public String transaction_uuid = null; public String uuid = null; public String reporting_term = null; public ArrayList student_section_uuids_to_drop = null; public ArrayList rates_opted_in = null; public String authorizing_uuid = null; public String getTransactionUuid() { return transaction_uuid; } public DropSubmitRequest setTransactionUuid(String value) { this.transaction_uuid = value; return this; } public String getUuid() { return uuid; } public DropSubmitRequest setUuid(String value) { this.uuid = value; return this; } public String getReportingTerm() { return reporting_term; } public DropSubmitRequest setReportingTerm(String value) { this.reporting_term = value; return this; } public ArrayList getStudentSectionUuidsToDrop() { return student_section_uuids_to_drop; } public DropSubmitRequest setStudentSectionUuidsToDrop(ArrayList value) { this.student_section_uuids_to_drop = value; return this; } public ArrayList getRatesOptedIn() { return rates_opted_in; } public DropSubmitRequest setRatesOptedIn(ArrayList value) { this.rates_opted_in = value; return this; } public String getAuthorizingUuid() { return authorizing_uuid; } public DropSubmitRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } private static Object responseType = ResponseStatus.class; public Object getResponseType() { return responseType; } } @DataContract public static class ResponseStatus { @DataMember(Order=1) public String errorCode = null; @DataMember(Order=2) public String message = null; @DataMember(Order=3) public String stackTrace = null; @DataMember(Order=4) public ArrayList errors = null; @DataMember(Order=5) public HashMap meta = null; public String getErrorCode() { return errorCode; } public ResponseStatus setErrorCode(String value) { this.errorCode = value; return this; } public String getMessage() { return message; } public ResponseStatus setMessage(String value) { this.message = value; return this; } public String getStackTrace() { return stackTrace; } public ResponseStatus setStackTrace(String value) { this.stackTrace = value; return this; } public ArrayList getErrors() { return errors; } public ResponseStatus setErrors(ArrayList value) { this.errors = value; return this; } public HashMap getMeta() { return meta; } public ResponseStatus setMeta(HashMap value) { this.meta = value; return this; } } }