/* Options: Date: 2024-10-06 10:30:55 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: RegistrationDocumentsRequest.* //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/Document/{uuid}/StudentSection/{section_uuid}", Verbs="POST") // @Route(Path="/Registration/Document/StudentSection/{section_uuid}", Verbs="POST") public static class RegistrationDocumentsRequest implements IReturn> { public String uuid = null; public String section_uuid = null; public String getUuid() { return uuid; } public RegistrationDocumentsRequest setUuid(String value) { this.uuid = value; return this; } public String getSectionUuid() { return section_uuid; } public RegistrationDocumentsRequest setSectionUuid(String value) { this.section_uuid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }