/* Options: Date: 2025-07-17 23:14:48 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SetPdfModelRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/pdf/model", Verbs="POST") public static class SetPdfModelRequest implements IReturn { public PdfModel pdfModel = null; public PdfModel getPdfModel() { return pdfModel; } public SetPdfModelRequest setPdfModel(PdfModel value) { this.pdfModel = value; return this; } private static Object responseType = SetPdfModelResponse.class; public Object getResponseType() { return responseType; } } public static class SetPdfModelResponse { public UUID id = null; public Boolean success = null; public UUID getId() { return id; } public SetPdfModelResponse setId(UUID value) { this.id = value; return this; } public Boolean isSuccess() { return success; } public SetPdfModelResponse setSuccess(Boolean value) { this.success = value; return this; } } public static class PdfModel { public String model = null; public String getModel() { return model; } public PdfModel setModel(String value) { this.model = value; return this; } } }