/* Options: Date: 2026-09-10 05:45:24 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: CrossTermRegistrationBillingAuditRequest.* //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/cross-term-billing-audit", Verbs="POST") public static class CrossTermRegistrationBillingAuditRequest implements IReturn> { public String reporting_term = null; public Date from_date = null; public Date to_date = null; public String billed_term = null; public Integer regent_id = null; public String operation = null; public Boolean is_admin = null; public String authorizing_uuid = null; public String getReportingTerm() { return reporting_term; } public CrossTermRegistrationBillingAuditRequest setReportingTerm(String value) { this.reporting_term = value; return this; } public Date getFromDate() { return from_date; } public CrossTermRegistrationBillingAuditRequest setFromDate(Date value) { this.from_date = value; return this; } public Date getToDate() { return to_date; } public CrossTermRegistrationBillingAuditRequest setToDate(Date value) { this.to_date = value; return this; } public String getBilledTerm() { return billed_term; } public CrossTermRegistrationBillingAuditRequest setBilledTerm(String value) { this.billed_term = value; return this; } public Integer getRegentId() { return regent_id; } public CrossTermRegistrationBillingAuditRequest setRegentId(Integer value) { this.regent_id = value; return this; } public String getOperation() { return operation; } public CrossTermRegistrationBillingAuditRequest setOperation(String value) { this.operation = value; return this; } public Boolean getIsAdmin() { return is_admin; } public CrossTermRegistrationBillingAuditRequest setIsAdmin(Boolean value) { this.is_admin = value; return this; } public String getAuthorizingUuid() { return authorizing_uuid; } public CrossTermRegistrationBillingAuditRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }