/* Options: Date: 2026-05-05 01:56:19 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ClearRevisionRequestsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/user-state/revision-requests", "DELETE") class ClearRevisionRequestsRequest implements IReturn, IConvertible, IDelete { int? workflowId; int? stepId; ClearRevisionRequestsRequest({this.workflowId,this.stepId}); ClearRevisionRequestsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { workflowId = json['workflowId']; stepId = json['stepId']; return this; } Map toJson() => { 'workflowId': workflowId, 'stepId': stepId }; createResponse() => bool(); getResponseTypeName() => "bool"; getTypeName() => "ClearRevisionRequestsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'ClearRevisionRequestsRequest': TypeInfo(TypeOf.Class, create:() => ClearRevisionRequestsRequest()), });