/* Options: Date: 2024-07-03 13:09:05 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestBookingPrintout.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } // @Route("/reports/booking/printout/test", "POST") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") class TestBookingPrintout implements ICompany, IConvertible, IPost { /** * 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") String? CompanyId; /** * Report header left cell content */ // @ApiMember(Description="Report header left cell content", IsRequired=true) String? HeaderLeftCell; /** * Report header middle cell content */ // @ApiMember(Description="Report header middle cell content", IsRequired=true) String? HeaderMiddleCell; /** * Report header right cell content */ // @ApiMember(Description="Report header right cell content", IsRequired=true) String? HeaderRightCell; /** * Report body cell content */ // @ApiMember(Description="Report body cell content", IsRequired=true) String? BodyCell; /** * Report footer left cell content */ // @ApiMember(Description="Report footer left cell content", IsRequired=true) String? FooterLeftCell; /** * Report footer middle cell content */ // @ApiMember(Description="Report footer middle cell content", IsRequired=true) String? FooterMiddleCell; /** * Report footer right cell content */ // @ApiMember(Description="Report footer right cell content", IsRequired=true) String? FooterRightCell; TestBookingPrintout({this.CompanyId,this.HeaderLeftCell,this.HeaderMiddleCell,this.HeaderRightCell,this.BodyCell,this.FooterLeftCell,this.FooterMiddleCell,this.FooterRightCell}); TestBookingPrintout.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; HeaderLeftCell = json['HeaderLeftCell']; HeaderMiddleCell = json['HeaderMiddleCell']; HeaderRightCell = json['HeaderRightCell']; BodyCell = json['BodyCell']; FooterLeftCell = json['FooterLeftCell']; FooterMiddleCell = json['FooterMiddleCell']; FooterRightCell = json['FooterRightCell']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'HeaderLeftCell': HeaderLeftCell, 'HeaderMiddleCell': HeaderMiddleCell, 'HeaderRightCell': HeaderRightCell, 'BodyCell': BodyCell, 'FooterLeftCell': FooterLeftCell, 'FooterMiddleCell': FooterMiddleCell, 'FooterRightCell': FooterRightCell }; getTypeName() => "TestBookingPrintout"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'TestBookingPrintout': TypeInfo(TypeOf.Class, create:() => TestBookingPrintout()), });