/* Options: Date: 2026-06-24 16:52:09 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AssignStampClerkRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/WorkflowStep/assign-stamp-clerk", Verbs="Post") open class AssignStampClerkRequest : IReturn { var stepId:Int? = null var clerkUserId:Int? = null companion object { private val responseType = WorkflowStepResponse::class.java } override fun getResponseType(): Any? = AssignStampClerkRequest.responseType } open class WorkflowStepResponse : IResponseRequest { var code:Int? = null var message:String? = null var insertedId:Int? = null } open interface IResponseRequest { var code:Int? var message:String? }