/* Options: Date: 2026-05-05 01:53:49 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: GetRevisionRequestsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/user-state/revision-requests", "GET") class GetRevisionRequestsRequest implements IReturn>, IConvertible, IGet { int? workflowId; int? stepId; GetRevisionRequestsRequest({this.workflowId,this.stepId}); GetRevisionRequestsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { workflowId = json['workflowId']; stepId = json['stepId']; return this; } Map toJson() => { 'workflowId': workflowId, 'stepId': stepId }; createResponse() => Map(); getResponseTypeName() => "Map"; getTypeName() => "GetRevisionRequestsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'GetRevisionRequestsRequest': TypeInfo(TypeOf.Class, create:() => GetRevisionRequestsRequest()), });