/* Options: Date: 2024-06-26 10:38:51 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteBookingPrintout.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class BookingPrintoutQueryResponse { /** @description Report id */ // @ApiMember(Description="Report id") public Id: number; /** @description Report Name */ // @ApiMember(Description="Report Name") public Name: string; /** @description Report header left cell content */ // @ApiMember(Description="Report header left cell content", IsRequired=true) public HeaderLeftCell: string; /** @description Report header middle cell content */ // @ApiMember(Description="Report header middle cell content", IsRequired=true) public HeaderMiddleCell: string; /** @description Report header right cell content */ // @ApiMember(Description="Report header right cell content", IsRequired=true) public HeaderRightCell: string; /** @description Report body cell content */ // @ApiMember(Description="Report body cell content", IsRequired=true) public BodyCell: string; /** @description Report footer left cell content */ // @ApiMember(Description="Report footer left cell content", IsRequired=true) public FooterLeftCell: string; /** @description Report footer middle cell content */ // @ApiMember(Description="Report footer middle cell content", IsRequired=true) public FooterMiddleCell: string; /** @description Report footer right cell content */ // @ApiMember(Description="Report footer right cell content", IsRequired=true) public FooterRightCell: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/reports/booking/printout/{Id}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") export class DeleteBookingPrintout implements IReturn, ICompany { /** @description Enter the company you want to see add a token for, if blank and you are an admin, your company id will be used */ // @ApiMember(Description="Enter the company you want to see add a token for, if blank and you are an admin, your company id will be used", ParameterType="query") public CompanyId?: string; /** @description Report id */ // @ApiMember(Description="Report id", IsRequired=true, ParameterType="path") public Id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteBookingPrintout'; } public getMethod() { return 'DELETE'; } public createResponse() { return new BookingPrintoutQueryResponse(); } }