/* Options: Date: 2026-04-19 19:30:40 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qlcn-api.vsmlab.vn //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FileTemplateReaderRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/file-template-reader", "POST") class FileTemplateReaderRequest implements IReturn, IConvertible, IPost { int? workflowId; String? templateType; FileTemplateReaderRequest({this.workflowId,this.templateType}); FileTemplateReaderRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { workflowId = json['workflowId']; templateType = json['templateType']; return this; } Map toJson() => { 'workflowId': workflowId, 'templateType': templateType }; createResponse() => dynamic(); getResponseTypeName() => "dynamic"; getTypeName() => "FileTemplateReaderRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'qlcn_api.vsmlab.vn', types: { 'FileTemplateReaderRequest': TypeInfo(TypeOf.Class, create:() => FileTemplateReaderRequest()), });