/* Options: Date: 2026-08-11 12:35:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EngineRunStepRetryRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class EngineActionResponse implements IConvertible { int? Affected; int? CreatedWorkflowId; ResponseStatus? ResponseStatus; EngineActionResponse({this.Affected,this.CreatedWorkflowId,this.ResponseStatus}); EngineActionResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Affected = json['Affected']; CreatedWorkflowId = json['CreatedWorkflowId']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Affected': Affected, 'CreatedWorkflowId': CreatedWorkflowId, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "EngineActionResponse"; TypeContext? context = _ctx; } // @Route("/v1/engine/runs/{RunId}/steps/{StepId}/retry", "POST") class EngineRunStepRetryRequest implements IReturn, IConvertible, IPost { int? RunId; int? StepId; EngineRunStepRetryRequest({this.RunId,this.StepId}); EngineRunStepRetryRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { RunId = json['RunId']; StepId = json['StepId']; return this; } Map toJson() => { 'RunId': RunId, 'StepId': StepId }; createResponse() => EngineActionResponse(); getResponseTypeName() => "EngineActionResponse"; getTypeName() => "EngineRunStepRetryRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'EngineActionResponse': TypeInfo(TypeOf.Class, create:() => EngineActionResponse()), 'EngineRunStepRetryRequest': TypeInfo(TypeOf.Class, create:() => EngineRunStepRetryRequest()), });