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