/* Options: Date: 2025-02-05 11:54:43 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: BranchService.SearchRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/api/Branch/Search", "POST,GET") class SearchRequest implements IReturn>, IConvertible { String? Tag; String? Location; SearchRequest({this.Tag,this.Location}); SearchRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Tag = json['Tag']; Location = json['Location']; return this; } Map toJson() => { 'Tag': Tag, 'Location': Location }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "SearchRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'SearchRequest': TypeInfo(TypeOf.Class, create:() => SearchRequest()), });