/* Options: Date: 2026-01-25 12:24:48 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteAlert.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Delete the specified alert */ // @Route("/alerts/{alertId}", "DELETE") // @Api(Description="Delete the specified alert") class DeleteAlert implements IReturnVoid, IDelete, IConvertible { /** * The ID of the alert to delete */ // @ApiMember(Description="The ID of the alert to delete") String? alertId; DeleteAlert({this.alertId}); DeleteAlert.fromJson(Map json) { fromMap(json); } fromMap(Map json) { alertId = json['alertId']; return this; } Map toJson() => { 'alertId': alertId }; createResponse() {} getTypeName() => "DeleteAlert"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'evovoice.io', types: { 'DeleteAlert': TypeInfo(TypeOf.Class, create:() => DeleteAlert()), });