/* Options: Date: 2026-06-13 03:48:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UploadRfpAttachment.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/project/rfp/attachment", Verbs="POST") public static class UploadRfpAttachment implements IReturn { public HttpFile File = null; public HttpFile getFile() { return File; } public UploadRfpAttachment setFile(HttpFile value) { this.File = value; return this; } private static Object responseType = UploadAttachmentResponse.class; public Object getResponseType() { return responseType; } } public static class UploadAttachmentResponse { public ResponseStatus ResponseStatus = null; public String AttachmentId = null; public Integer ProjectId = null; public String FileType = null; public String FileName = null; public String ContentType = null; public Long ContentLength = null; public Date CreatedUtc = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public UploadAttachmentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public String getAttachmentId() { return AttachmentId; } public UploadAttachmentResponse setAttachmentId(String value) { this.AttachmentId = value; return this; } public Integer getProjectId() { return ProjectId; } public UploadAttachmentResponse setProjectId(Integer value) { this.ProjectId = value; return this; } public String getFileType() { return FileType; } public UploadAttachmentResponse setFileType(String value) { this.FileType = value; return this; } public String getFileName() { return FileName; } public UploadAttachmentResponse setFileName(String value) { this.FileName = value; return this; } public String getContentType() { return ContentType; } public UploadAttachmentResponse setContentType(String value) { this.ContentType = value; return this; } public Long getContentLength() { return ContentLength; } public UploadAttachmentResponse setContentLength(Long value) { this.ContentLength = value; return this; } public Date getCreatedUtc() { return CreatedUtc; } public UploadAttachmentResponse setCreatedUtc(Date value) { this.CreatedUtc = 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; } } }