/* Options: Date: 2025-04-04 17:23:47 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindBranchStatistic.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class BranchStatisticInstance implements IConvertible { int? ActiveRedAlerts; int? ActiveGreenAlerts; int? ActiveSleepers; int? ActivesAttendedFifty; int? FourteenDayers; int? AttendedLast7Dayers; int? ActiveMissedPayments; int? ContractExtenders; int? PrePayExpiring; int? SevenDayStarted; BranchStatisticInstance({this.ActiveRedAlerts,this.ActiveGreenAlerts,this.ActiveSleepers,this.ActivesAttendedFifty,this.FourteenDayers,this.AttendedLast7Dayers,this.ActiveMissedPayments,this.ContractExtenders,this.PrePayExpiring,this.SevenDayStarted}); BranchStatisticInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ActiveRedAlerts = json['ActiveRedAlerts']; ActiveGreenAlerts = json['ActiveGreenAlerts']; ActiveSleepers = json['ActiveSleepers']; ActivesAttendedFifty = json['ActivesAttendedFifty']; FourteenDayers = json['FourteenDayers']; AttendedLast7Dayers = json['AttendedLast7Dayers']; ActiveMissedPayments = json['ActiveMissedPayments']; ContractExtenders = json['ContractExtenders']; PrePayExpiring = json['PrePayExpiring']; SevenDayStarted = json['SevenDayStarted']; return this; } Map toJson() => { 'ActiveRedAlerts': ActiveRedAlerts, 'ActiveGreenAlerts': ActiveGreenAlerts, 'ActiveSleepers': ActiveSleepers, 'ActivesAttendedFifty': ActivesAttendedFifty, 'FourteenDayers': FourteenDayers, 'AttendedLast7Dayers': AttendedLast7Dayers, 'ActiveMissedPayments': ActiveMissedPayments, 'ContractExtenders': ContractExtenders, 'PrePayExpiring': PrePayExpiring, 'SevenDayStarted': SevenDayStarted }; getTypeName() => "BranchStatisticInstance"; TypeContext? context = _ctx; } // @Route("/api/Query/BranchStatistic") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="BranchStatistic") class FindBranchStatistic extends QueryDb implements IReturn>, IConvertible { FindBranchStatistic(); FindBranchStatistic.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "FindBranchStatistic"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'BranchStatisticInstance': TypeInfo(TypeOf.Class, create:() => BranchStatisticInstance()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'FindBranchStatistic': TypeInfo(TypeOf.Class, create:() => FindBranchStatistic()), 'List': TypeInfo(TypeOf.Class, create:() => []), });