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