/* Options: Date: 2025-09-13 18:25:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ExportBookingReport.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/bookings/{BookingId}/reports/{ReportId}", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ExportBookingReport { /** * Id of the booking */ @ApiMember(Description="Id of the booking", IsRequired=true, ParameterType="path") open var BookingId:Int? = 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.") open var CompanyId:UUID? = null /** * Id of the report */ @ApiMember(Description="Id of the report", IsRequired=true, ParameterType="path") open var ReportId:Int? = null open var SendReceiptMethod:SendReceiptMethod? = null } enum class SendReceiptMethod(val value:Int) { Email(1), PdfExport(2), }