/* Options: Date: 2024-07-03 13:29:40 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ExportReport.* //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="/bookings/{BookingId}/reports/{ReportId}", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") public static class ExportReport { /** * Id of the booking */ @ApiMember(Description="Id of the booking", IsRequired=true, ParameterType="path") public Integer BookingId = null; /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public UUID CompanyId = null; /** * Id of the report */ @ApiMember(Description="Id of the report", IsRequired=true, ParameterType="path") public Integer ReportId = null; public SendReceiptMethod SendReceiptMethod = null; public Integer getBookingId() { return BookingId; } public ExportReport setBookingId(Integer value) { this.BookingId = value; return this; } public UUID getCompanyId() { return CompanyId; } public ExportReport setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getReportId() { return ReportId; } public ExportReport setReportId(Integer value) { this.ReportId = value; return this; } public SendReceiptMethod getSendReceiptMethod() { return SendReceiptMethod; } public ExportReport setSendReceiptMethod(SendReceiptMethod value) { this.SendReceiptMethod = value; return this; } } public static enum SendReceiptMethod { Email(1), PdfExport(2); private final int value; SendReceiptMethod(final int intValue) { value = intValue; } public int getValue() { return value; } } }