/* Options: Date: 2025-04-04 17:23:46 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: ViewSalesLossReasons.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class LossReasonInstance implements IConvertible { int? LossReasonId; String? Reason; bool? Deleted; bool? Demo; bool? Selectable; LossReasonInstance({this.LossReasonId,this.Reason,this.Deleted,this.Demo,this.Selectable}); LossReasonInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LossReasonId = json['LossReasonId']; Reason = json['Reason']; Deleted = json['Deleted']; Demo = json['Demo']; Selectable = json['Selectable']; return this; } Map toJson() => { 'LossReasonId': LossReasonId, 'Reason': Reason, 'Deleted': Deleted, 'Demo': Demo, 'Selectable': Selectable }; getTypeName() => "LossReasonInstance"; TypeContext? context = _ctx; } class SalesLossReasonsInstance implements IConvertible { LossReasonInstance? LossReason; // @References(typeof(LossReasonInstance)) int? LossReasonId; String? Reason; bool? Selectable; int? AppliedCount; SalesLossReasonsInstance({this.LossReason,this.LossReasonId,this.Reason,this.Selectable,this.AppliedCount}); SalesLossReasonsInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LossReason = JsonConverters.fromJson(json['LossReason'],'LossReasonInstance',context!); LossReasonId = json['LossReasonId']; Reason = json['Reason']; Selectable = json['Selectable']; AppliedCount = json['AppliedCount']; return this; } Map toJson() => { 'LossReason': JsonConverters.toJson(LossReason,'LossReasonInstance',context!), 'LossReasonId': LossReasonId, 'Reason': Reason, 'Selectable': Selectable, 'AppliedCount': AppliedCount }; getTypeName() => "SalesLossReasonsInstance"; TypeContext? context = _ctx; } // @Route("/api/Query/SalesLossReasons") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="SalesLossReasons") class ViewSalesLossReasons extends QueryDb implements IReturn>, IConvertible { ViewSalesLossReasons(); ViewSalesLossReasons.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "ViewSalesLossReasons"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'LossReasonInstance': TypeInfo(TypeOf.Class, create:() => LossReasonInstance()), 'SalesLossReasonsInstance': TypeInfo(TypeOf.Class, create:() => SalesLossReasonsInstance()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'ViewSalesLossReasons': TypeInfo(TypeOf.Class, create:() => ViewSalesLossReasons()), 'List': TypeInfo(TypeOf.Class, create:() => []), });