/* Options: Date: 2024-06-26 16:23:55 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: ReportQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class BaseModel implements IConvertible { BaseModel(); BaseModel.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "BaseModel"; TypeContext? context = _ctx; } class BookingPrintout extends BaseModel implements IConvertible { // @Required() String? CompanyId; int? Id; // @Required() String? Name; String? HeaderLeftCell; String? HeaderMiddleCell; String? HeaderRightCell; // @Required() String? BodyCell; String? FooterLeftCell; String? FooterMiddleCell; String? FooterRightCell; DateTime? ModifiedDate; BookingPrintout({this.CompanyId,this.Id,this.Name,this.HeaderLeftCell,this.HeaderMiddleCell,this.HeaderRightCell,this.BodyCell,this.FooterLeftCell,this.FooterMiddleCell,this.FooterRightCell,this.ModifiedDate}); BookingPrintout.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CompanyId = json['CompanyId']; 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']; ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'CompanyId': CompanyId, 'Id': Id, 'Name': Name, 'HeaderLeftCell': HeaderLeftCell, 'HeaderMiddleCell': HeaderMiddleCell, 'HeaderRightCell': HeaderRightCell, 'BodyCell': BodyCell, 'FooterLeftCell': FooterLeftCell, 'FooterMiddleCell': FooterMiddleCell, 'FooterRightCell': FooterRightCell, 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!) }); getTypeName() => "BookingPrintout"; TypeContext? context = _ctx; } 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("/bookings/reports/", "GET") // @ValidateRequest(Validator="IsAuthenticated") class ReportQuery extends QueryDb2 implements IReturn>, ICompany, IConvertible, IGet { /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") String? CompanyId; ReportQuery({this.CompanyId}); ReportQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CompanyId = json['CompanyId']; return this; } Map toJson() => super.toJson()..addAll({ 'CompanyId': CompanyId }); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "ReportQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'BaseModel': TypeInfo(TypeOf.Class, create:() => BaseModel()), 'BookingPrintout': TypeInfo(TypeOf.Class, create:() => BookingPrintout()), 'BookingPrintoutQueryResponse': TypeInfo(TypeOf.Class, create:() => BookingPrintoutQueryResponse()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'ReportQuery': TypeInfo(TypeOf.Class, create:() => ReportQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });