/* Options: Date: 2024-10-06 10:31:29 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: DropRegistrationsForBalanceOwingRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/Registration/{reporting_term}/DropForBalanceOwing", Verbs="POST") public static class DropRegistrationsForBalanceOwingRequest implements IReturn> { public String authorizing_uuid = null; public String reporting_term = null; public Boolean is_preview_only = null; public Date override_drop_date = null; public String getAuthorizingUuid() { return authorizing_uuid; } public DropRegistrationsForBalanceOwingRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } public String getReportingTerm() { return reporting_term; } public DropRegistrationsForBalanceOwingRequest setReportingTerm(String value) { this.reporting_term = value; return this; } public Boolean getIsPreviewOnly() { return is_preview_only; } public DropRegistrationsForBalanceOwingRequest setIsPreviewOnly(Boolean value) { this.is_preview_only = value; return this; } public Date getOverrideDropDate() { return override_drop_date; } public DropRegistrationsForBalanceOwingRequest setOverrideDropDate(Date value) { this.override_drop_date = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }