/* Options: Date: 2026-09-02 15:27:35 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteBooking.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } export interface IDeleteDb { } /** @description Booking Details */ export class Booking extends AuditBase { public id: number; public name: string; public roomType: RoomType; public roomNumber: number; public bookingStartDate: string; public bookingEndDate?: string; public cost: number; // @References("typeof(MyApp.ServiceModel.Coupon)") public couponId?: string; public discount: Coupon; public notes?: string; public cancelled?: boolean; // @References("typeof(MyApp.ServiceModel.Address)") public permanentAddressId?: number; public permanentAddress?: Address; // @References("typeof(MyApp.ServiceModel.Address)") public postalAddressId?: number; public postalAddress?: Address; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description Delete a Booking */ // @Route("/booking/{Id}", "DELETE") export class DeleteBooking implements IReturnVoid, IDeleteDb { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteBooking'; } public getMethod() { return 'DELETE'; } public createResponse() {} }