/* Options: Date: 2026-06-24 16:54:02 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: AssignStampClerkRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class IResponseRequest { int? code; String? message; } class WorkflowStepResponse implements IResponseRequest, IConvertible { int? code; String? message; int? insertedId; WorkflowStepResponse({this.code,this.message,this.insertedId}); WorkflowStepResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { code = json['code']; message = json['message']; insertedId = json['insertedId']; return this; } Map toJson() => { 'code': code, 'message': message, 'insertedId': insertedId }; getTypeName() => "WorkflowStepResponse"; TypeContext? context = _ctx; } // @Route("/WorkflowStep/assign-stamp-clerk", "Post") class AssignStampClerkRequest implements IReturn, IConvertible, IPost { int? stepId; int? clerkUserId; AssignStampClerkRequest({this.stepId,this.clerkUserId}); AssignStampClerkRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { stepId = json['stepId']; clerkUserId = json['clerkUserId']; return this; } Map toJson() => { 'stepId': stepId, 'clerkUserId': clerkUserId }; createResponse() => WorkflowStepResponse(); getResponseTypeName() => "WorkflowStepResponse"; getTypeName() => "AssignStampClerkRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'IResponseRequest': TypeInfo(TypeOf.Interface), 'WorkflowStepResponse': TypeInfo(TypeOf.Class, create:() => WorkflowStepResponse()), 'AssignStampClerkRequest': TypeInfo(TypeOf.Class, create:() => AssignStampClerkRequest()), });