/* Options: Date: 2025-05-12 16:12:55 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TestFileUploads.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class TestFileUploads implements IReturn { public Integer id = null; public String refId = null; public Integer getId() { return id; } public TestFileUploads setId(Integer value) { this.id = value; return this; } public String getRefId() { return refId; } public TestFileUploads setRefId(String value) { this.refId = value; return this; } private static Object responseType = TestFileUploadsResponse.class; public Object getResponseType() { return responseType; } } public static class TestFileUploadsResponse { public Integer id = null; public String refId = null; public ArrayList files = new ArrayList(); public ResponseStatus responseStatus = null; public Integer getId() { return id; } public TestFileUploadsResponse setId(Integer value) { this.id = value; return this; } public String getRefId() { return refId; } public TestFileUploadsResponse setRefId(String value) { this.refId = value; return this; } public ArrayList getFiles() { return files; } public TestFileUploadsResponse setFiles(ArrayList value) { this.files = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public TestFileUploadsResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class UploadInfo { public String name = null; public String fileName = null; public Long contentLength = null; public String contentType = null; public String getName() { return name; } public UploadInfo setName(String value) { this.name = value; return this; } public String getFileName() { return fileName; } public UploadInfo setFileName(String value) { this.fileName = value; return this; } public Long getContentLength() { return contentLength; } public UploadInfo setContentLength(Long value) { this.contentLength = value; return this; } public String getContentType() { return contentType; } public UploadInfo setContentType(String value) { this.contentType = value; return this; } } }