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