/* Options: Date: 2024-06-26 11:20:39 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteBookingPrintout.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class BookingPrintoutQueryResponse implements IConvertible { /** * Report id */ // @ApiMember(Description="Report id") int? Id; /** * Report Name */ // @ApiMember(Description="Report Name") String? Name; /** * 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; BookingPrintoutQueryResponse({this.Id,this.Name,this.HeaderLeftCell,this.HeaderMiddleCell,this.HeaderRightCell,this.BodyCell,this.FooterLeftCell,this.FooterMiddleCell,this.FooterRightCell}); BookingPrintoutQueryResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; 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() => { 'Id': Id, 'Name': Name, 'HeaderLeftCell': HeaderLeftCell, 'HeaderMiddleCell': HeaderMiddleCell, 'HeaderRightCell': HeaderRightCell, 'BodyCell': BodyCell, 'FooterLeftCell': FooterLeftCell, 'FooterMiddleCell': FooterMiddleCell, 'FooterRightCell': FooterRightCell }; getTypeName() => "BookingPrintoutQueryResponse"; TypeContext? context = _ctx; } // @Route("/reports/booking/printout/{Id}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") class DeleteBookingPrintout implements IReturn, ICompany, IConvertible, IDelete { /** * 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 id */ // @ApiMember(Description="Report id", IsRequired=true, ParameterType="path") int? Id; DeleteBookingPrintout({this.CompanyId,this.Id}); DeleteBookingPrintout.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Id = json['Id']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'Id': Id }; createResponse() => BookingPrintoutQueryResponse(); getResponseTypeName() => "BookingPrintoutQueryResponse"; getTypeName() => "DeleteBookingPrintout"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'BookingPrintoutQueryResponse': TypeInfo(TypeOf.Class, create:() => BookingPrintoutQueryResponse()), 'DeleteBookingPrintout': TypeInfo(TypeOf.Class, create:() => DeleteBookingPrintout()), });