/* Options: Date: 2024-07-03 13:44:28 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestBookingPrintout.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/reports/booking/printout/test", "POST") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") export class TestBookingPrintout implements 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 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); } public getTypeName() { return 'TestBookingPrintout'; } public getMethod() { return 'POST'; } public createResponse() {} }