/* Options: Date: 2025-05-05 00:55:52 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: AppDeleteEndpoint.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/portal/endpoints/{endpointId}", "DELETE") class AppDeleteEndpoint implements IReturnVoid, IConvertible, IDelete { String? accountId; String? customerId; String? endpointId; AppDeleteEndpoint({this.accountId,this.customerId,this.endpointId}); AppDeleteEndpoint.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; customerId = json['customerId']; endpointId = json['endpointId']; return this; } Map toJson() => { 'accountId': accountId, 'customerId': customerId, 'endpointId': endpointId }; createResponse() {} getTypeName() => "AppDeleteEndpoint"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'AppDeleteEndpoint': TypeInfo(TypeOf.Class, create:() => AppDeleteEndpoint()), });