/* Options: Date: 2026-03-22 22:16:01 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://fbihtaapi.bettor.webhop.biz //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindTaxAuthorityId.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class TakenTaxAuthorityId implements IConvertible { String? id; String? taxAuthorityId; String? taxAuthorityIdUserInfo; TakenTaxAuthorityId({this.id,this.taxAuthorityId,this.taxAuthorityIdUserInfo}); TakenTaxAuthorityId.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; taxAuthorityId = json['taxAuthorityId']; taxAuthorityIdUserInfo = json['taxAuthorityIdUserInfo']; return this; } Map toJson() => { 'id': id, 'taxAuthorityId': taxAuthorityId, 'taxAuthorityIdUserInfo': taxAuthorityIdUserInfo }; getTypeName() => "TakenTaxAuthorityId"; TypeContext? context = _ctx; } // @Route("/taxAuthorityId", "GET") class FindTaxAuthorityId implements IReturn, IConvertible, IGet { String? id; FindTaxAuthorityId({this.id}); FindTaxAuthorityId.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => TakenTaxAuthorityId(); getResponseTypeName() => "TakenTaxAuthorityId"; getTypeName() => "FindTaxAuthorityId"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'fbihtaapi.bettor.webhop.biz', types: { 'TakenTaxAuthorityId': TypeInfo(TypeOf.Class, create:() => TakenTaxAuthorityId()), 'FindTaxAuthorityId': TypeInfo(TypeOf.Class, create:() => FindTaxAuthorityId()), });