/* Options: Date: 2026-04-24 20:21:24 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: CancelWorkflowRedoRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/workflow-redo-request/{Id}/cancel", Verbs="POST") open class CancelWorkflowRedoRequest : IReturn { var id:Int? = null companion object { private val responseType = WorkflowRedoRequestResponse::class.java } override fun getResponseType(): Any? = CancelWorkflowRedoRequest.responseType } open class WorkflowRedoRequestResponse { var code:Int? = null var message:String? = null var requiresApproval:Boolean? = null var request:WorkflowRedoRequestDetail? = null } open class WorkflowRedoRequestDetail { var id:Int? = null var documentId:Int? = null var stepId:Int? = null var stepName:String? = null var requestedBy:Int? = null var requestedByName:String? = null var approverId:Int? = null var approverName:String? = null var status:Int? = null var reason:String? = null var comment:String? = null var createdAt:Date? = null var actionAt:Date? = null }