/* Options: Date: 2025-05-05 01:21:27 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: DeleteCustomer.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Delete the specified customer */ // @Route("/customers/{customerId}", "DELETE") // @Api(Description="Delete the specified customer") class DeleteCustomer implements IReturnVoid, IDelete, IConvertible { /** * The ID of the customer to delete */ // @ApiMember(Description="The ID of the customer to delete") String? customerId; DeleteCustomer({this.customerId}); DeleteCustomer.fromJson(Map json) { fromMap(json); } fromMap(Map json) { customerId = json['customerId']; return this; } Map toJson() => { 'customerId': customerId }; createResponse() {} getTypeName() => "DeleteCustomer"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'DeleteCustomer': TypeInfo(TypeOf.Class, create:() => DeleteCustomer()), });