/* Options: Date: 2025-12-08 14:32:46 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.beto2.webhop.biz //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CorrectLocationTaxAuthorityId.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/cmd/locations/correct/taxAuthorityId", "POST") class CorrectLocationTaxAuthorityId implements IReturn, IConvertible, IPost { String? id; String? taxAuthorityId; CorrectLocationTaxAuthorityId({this.id,this.taxAuthorityId}); CorrectLocationTaxAuthorityId.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; taxAuthorityId = json['taxAuthorityId']; return this; } Map toJson() => { 'id': id, 'taxAuthorityId': taxAuthorityId }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "CorrectLocationTaxAuthorityId"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.beto2.webhop.biz', types: { 'CorrectLocationTaxAuthorityId': TypeInfo(TypeOf.Class, create:() => CorrectLocationTaxAuthorityId()), });