/* Options: Date: 2025-06-29 00:50:50 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: DeleteUser.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Deletes the specified login */ // @Route("/users/{userId}", "DELETE") // @Api(Description="Deletes the specified login") class DeleteUser implements IReturnVoid, IDelete, IConvertible { /** * The ID of the login to delete */ // @ApiMember(Description="The ID of the login to delete") String? userId; DeleteUser({this.userId}); DeleteUser.fromJson(Map json) { fromMap(json); } fromMap(Map json) { userId = json['userId']; return this; } Map toJson() => { 'userId': userId }; createResponse() {} getTypeName() => "DeleteUser"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'evovoice.io', types: { 'DeleteUser': TypeInfo(TypeOf.Class, create:() => DeleteUser()), });