/* Options: Date: 2025-02-05 08:47:29 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: ViewBranchMonday.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class BranchMondayInstance implements IConvertible { String? LookupValue; String? UpdateColumnId; String? Value; int? ParentBranchId; BranchMondayInstance({this.LookupValue,this.UpdateColumnId,this.Value,this.ParentBranchId}); BranchMondayInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LookupValue = json['LookupValue']; UpdateColumnId = json['UpdateColumnId']; Value = json['Value']; ParentBranchId = json['ParentBranchId']; return this; } Map toJson() => { 'LookupValue': LookupValue, 'UpdateColumnId': UpdateColumnId, 'Value': Value, 'ParentBranchId': ParentBranchId }; getTypeName() => "BranchMondayInstance"; TypeContext? context = _ctx; } // @Route("/api/Query/BranchMonday") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="BranchMonday") class ViewBranchMonday extends QueryDb implements IReturn>, IConvertible { ViewBranchMonday(); ViewBranchMonday.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "ViewBranchMonday"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'BranchMondayInstance': TypeInfo(TypeOf.Class, create:() => BranchMondayInstance()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'ViewBranchMonday': TypeInfo(TypeOf.Class, create:() => ViewBranchMonday()), 'List': TypeInfo(TypeOf.Class, create:() => []), });