/* Options: Date: 2025-12-06 05:14:30 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: PDFDocumentRequest.* //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/PDFDocument/{DocumentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/PDFDocument/ByCard/{CardId}", Verbs="GET,OPTIONS") public static class PDFDocumentRequest implements IReturn { public Integer CardId = null; public UUID DocumentId = null; public ArrayList PDFDocument = new ArrayList(); public Integer getCardId() { return CardId; } public PDFDocumentRequest setCardId(Integer value) { this.CardId = value; return this; } public UUID getDocumentId() { return DocumentId; } public PDFDocumentRequest setDocumentId(UUID value) { this.DocumentId = value; return this; } public ArrayList getPdfDocument() { return PDFDocument; } public PDFDocumentRequest setPdfDocument(ArrayList value) { this.PDFDocument = value; return this; } private static Object responseType = PDFDocumentResponse.class; public Object getResponseType() { return responseType; } } public static class PDFDocumentResponse { public ResponseStatus ResponseStatus = null; public ArrayList PDFDocument = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public PDFDocumentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPdfDocument() { return PDFDocument; } public PDFDocumentResponse setPdfDocument(ArrayList value) { this.PDFDocument = value; return this; } } public static class PDFDocument { public UUID DocumentId = null; public byte[] PDFDocument = new byte[]{}; public Date DateCreated = null; public Integer CardId = null; public UUID getDocumentId() { return DocumentId; } public PDFDocument setDocumentId(UUID value) { this.DocumentId = value; return this; } public byte[] getPdfDocument() { return PDFDocument; } public PDFDocument setPdfDocument(byte[] value) { this.PDFDocument = value; return this; } public Date getDateCreated() { return DateCreated; } public PDFDocument setDateCreated(Date value) { this.DateCreated = value; return this; } public Integer getCardId() { return CardId; } public PDFDocument setCardId(Integer value) { this.CardId = value; return this; } } }