/* Options: Date: 2026-04-24 20:18:37 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: GetPendingWorkflowRedoRequests.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/workflow/{DocumentId}/redo-requests/pending", Verbs="GET") open class GetPendingWorkflowRedoRequests : IReturn> { var documentId:Int? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = GetPendingWorkflowRedoRequests.responseType } 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 }