/* Options: Date: 2024-12-29 02:35:00 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: FinancialAidApplicationFileRequest.* //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="/Finance/FinancialAid/Application/{application_uuid}/{file_uuid}", Verbs="POST") public static class FinancialAidApplicationFileRequest implements IReturn { public String application_uuid = null; public String file_uuid = null; public String getApplicationUuid() { return application_uuid; } public FinancialAidApplicationFileRequest setApplicationUuid(String value) { this.application_uuid = value; return this; } public String getFileUuid() { return file_uuid; } public FinancialAidApplicationFileRequest setFileUuid(String value) { this.file_uuid = value; return this; } private static Object responseType = FileResponse.class; public Object getResponseType() { return responseType; } } public static class FileResponse extends FileSimpleResponse { public String type = null; public byte[] content = null; public String getType() { return type; } public FileResponse setType(String value) { this.type = value; return this; } public byte[] getContent() { return content; } public FileResponse setContent(byte[] value) { this.content = value; return this; } } public static class FileSimpleResponse { public ResponseStatus responseStatus = null; public String uuid = null; public String name = null; public String extension = null; public Long size = null; public ResponseStatus getResponseStatus() { return responseStatus; } public FileSimpleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getUuid() { return uuid; } public FileSimpleResponse setUuid(String value) { this.uuid = value; return this; } public String getName() { return name; } public FileSimpleResponse setName(String value) { this.name = value; return this; } public String getExtension() { return extension; } public FileSimpleResponse setExtension(String value) { this.extension = value; return this; } public Long getSize() { return size; } public FileSimpleResponse setSize(Long value) { this.size = value; return this; } } }