/* Options: Date: 2026-06-27 02:00:38 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: ExportWorkflowProfileRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/WorkflowStep/export-profile", "Get") class ExportWorkflowProfileRequest implements IReturn, IConvertible, IGet { int? workflowId; String? mode; ExportWorkflowProfileRequest({this.workflowId,this.mode}); ExportWorkflowProfileRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { workflowId = json['workflowId']; mode = json['mode']; return this; } Map toJson() => { 'workflowId': workflowId, 'mode': mode }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "ExportWorkflowProfileRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'ExportWorkflowProfileRequest': TypeInfo(TypeOf.Class, create:() => ExportWorkflowProfileRequest()), });