/* Options: Date: 2026-08-01 04:08:22 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: RfpAddDocumentRequest.* //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/Rfp/{RfpDocumentUID}/Documents", Verbs="POST,OPTIONS") public static class RfpAddDocumentRequest implements IReturn { public UUID RfpDocumentUID = null; public String DocumentType = null; public UUID getRfpDocumentUID() { return RfpDocumentUID; } public RfpAddDocumentRequest setRfpDocumentUID(UUID value) { this.RfpDocumentUID = value; return this; } public String getDocumentType() { return DocumentType; } public RfpAddDocumentRequest setDocumentType(String value) { this.DocumentType = value; return this; } private static Object responseType = RfpAddDocumentResponse.class; public Object getResponseType() { return responseType; } } public static class RfpAddDocumentResponse { public ResponseStatus ResponseStatus = null; public Integer RfpDocumentID = null; public UUID RfpDocumentUID = null; public String FileName = null; public String DocumentType = null; public String Status = null; public Boolean Filed = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public RfpAddDocumentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Integer getRfpDocumentID() { return RfpDocumentID; } public RfpAddDocumentResponse setRfpDocumentID(Integer value) { this.RfpDocumentID = value; return this; } public UUID getRfpDocumentUID() { return RfpDocumentUID; } public RfpAddDocumentResponse setRfpDocumentUID(UUID value) { this.RfpDocumentUID = value; return this; } public String getFileName() { return FileName; } public RfpAddDocumentResponse setFileName(String value) { this.FileName = value; return this; } public String getDocumentType() { return DocumentType; } public RfpAddDocumentResponse setDocumentType(String value) { this.DocumentType = value; return this; } public String getStatus() { return Status; } public RfpAddDocumentResponse setStatus(String value) { this.Status = value; return this; } public Boolean isFiled() { return Filed; } public RfpAddDocumentResponse setFiled(Boolean value) { this.Filed = value; return this; } } }