/* Options: Date: 2025-05-04 23:32:28 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: RestartFlow.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Restarts the current flow */ // @Route("/flows/restart") // @Api(Description="Restarts the current flow") class RestartFlow implements IReturnVoid, IConvertible, IPost { /** * The ID of the session */ // @ApiMember(Description="The ID of the session") String? sessionId; RestartFlow({this.sessionId}); RestartFlow.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; return this; } Map toJson() => { 'sessionId': sessionId }; createResponse() {} getTypeName() => "RestartFlow"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'RestartFlow': TypeInfo(TypeOf.Class, create:() => RestartFlow()), });