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