/* Options: Date: 2025-04-04 17:33:35 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: FindAutomationTemplate.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class AutomationTemplateInstance implements IConvertible { int? AutomationTemplateId; String? Name; String? URL; String? Group; bool? Deleted; String? Warning; AutomationTemplateInstance({this.AutomationTemplateId,this.Name,this.URL,this.Group,this.Deleted,this.Warning}); AutomationTemplateInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AutomationTemplateId = json['AutomationTemplateId']; Name = json['Name']; URL = json['URL']; Group = json['Group']; Deleted = json['Deleted']; Warning = json['Warning']; return this; } Map toJson() => { 'AutomationTemplateId': AutomationTemplateId, 'Name': Name, 'URL': URL, 'Group': Group, 'Deleted': Deleted, 'Warning': Warning }; getTypeName() => "AutomationTemplateInstance"; TypeContext? context = _ctx; } // @Route("/api/Query/AutomationTemplate") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="AutomationTemplate") class FindAutomationTemplate extends QueryDb implements IReturn>, IConvertible { FindAutomationTemplate(); FindAutomationTemplate.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "FindAutomationTemplate"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'AutomationTemplateInstance': TypeInfo(TypeOf.Class, create:() => AutomationTemplateInstance()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'FindAutomationTemplate': TypeInfo(TypeOf.Class, create:() => FindAutomationTemplate()), 'List': TypeInfo(TypeOf.Class, create:() => []), });