/* Options: Date: 2026-09-23 01:32:59 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: PayAppG702PdfRequest.* //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/projects/{ProjectID}/pay-apps/{PeriodNumber}/g702/pdf", Verbs="POST,OPTIONS") public static class PayAppG702PdfRequest implements IReturn { public Integer ProjectID = null; public Integer PeriodNumber = null; public Integer getProjectID() { return ProjectID; } public PayAppG702PdfRequest setProjectID(Integer value) { this.ProjectID = value; return this; } public Integer getPeriodNumber() { return PeriodNumber; } public PayAppG702PdfRequest setPeriodNumber(Integer value) { this.PeriodNumber = value; return this; } private static Object responseType = PrintablePdfResponse.class; public Object getResponseType() { return responseType; } } public static class PrintablePdfResponse { public ResponseStatus ResponseStatus = null; public UUID AttachmentId = null; public String FileName = null; public String StoredOn = null; public Integer RecordId = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public PrintablePdfResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public UUID getAttachmentId() { return AttachmentId; } public PrintablePdfResponse setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public String getFileName() { return FileName; } public PrintablePdfResponse setFileName(String value) { this.FileName = value; return this; } public String getStoredOn() { return StoredOn; } public PrintablePdfResponse setStoredOn(String value) { this.StoredOn = value; return this; } public Integer getRecordId() { return RecordId; } public PrintablePdfResponse setRecordId(Integer value) { this.RecordId = value; return this; } } }