/* Options: Date: 2026-05-09 19:47:18 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://chienbinhdevias-admin-api-sandbox.adnx.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UploadS3FileRequest.* //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="/s3/files", Verbs="POST") public static class UploadS3FileRequest implements IReturn> { public String path = null; public HttpFile file = null; public String getPath() { return path; } public UploadS3FileRequest setPath(String value) { this.path = value; return this; } public HttpFile getFile() { return file; } public UploadS3FileRequest setFile(HttpFile value) { this.file = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class BaseResponse implements IResponseRequest { public Integer code = null; public String message = null; public String data = null; public Integer getCode() { return code; } public BaseResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public BaseResponse setMessage(String value) { this.message = value; return this; } public String getData() { return data; } public BaseResponse setData(String value) { this.data = value; return this; } } public static class HttpFile { public String name = null; public String fileName = null; public Long contentLength = null; public String contentType = null; public InputStream inputStream = null; public String getName() { return name; } public HttpFile setName(String value) { this.name = value; return this; } public String getFileName() { return fileName; } public HttpFile setFileName(String value) { this.fileName = value; return this; } public Long getContentLength() { return contentLength; } public HttpFile setContentLength(Long value) { this.contentLength = value; return this; } public String getContentType() { return contentType; } public HttpFile setContentType(String value) { this.contentType = value; return this; } public InputStream getInputStream() { return inputStream; } public HttpFile setInputStream(InputStream value) { this.inputStream = value; return this; } } }