/* Options: Date: 2025-05-04 23:39:54 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteAddress.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Delete the specified address */ // @Route("/addresses/{addressId}", "DELETE") // @Api(Description="Delete the specified address") class DeleteAddress implements IReturnVoid, IConvertible, IDelete { String? accountId; /** * The ID of the address you want to delete */ // @ApiMember(Description="The ID of the address you want to delete") String? addressId; DeleteAddress({this.accountId,this.addressId}); DeleteAddress.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; addressId = json['addressId']; return this; } Map toJson() => { 'accountId': accountId, 'addressId': addressId }; createResponse() {} getTypeName() => "DeleteAddress"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'DeleteAddress': TypeInfo(TypeOf.Class, create:() => DeleteAddress()), });