/* Options: Date: 2024-10-06 10:30:38 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: RegistrationActivityRequest.* //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/activity", Verbs="POST") public static class RegistrationActivityRequest implements IReturn> { public String uuid = null; public String reporting_term = null; public Date from_date = null; public Date to_date = null; public String getUuid() { return uuid; } public RegistrationActivityRequest setUuid(String value) { this.uuid = value; return this; } public String getReportingTerm() { return reporting_term; } public RegistrationActivityRequest setReportingTerm(String value) { this.reporting_term = value; return this; } public Date getFromDate() { return from_date; } public RegistrationActivityRequest setFromDate(Date value) { this.from_date = value; return this; } public Date getToDate() { return to_date; } public RegistrationActivityRequest setToDate(Date value) { this.to_date = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }