/* Options: Date: 2026-04-24 04:12:48 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qlcn-api.vsmlab.vn //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ApproveWorkflowDeleteRequest.* //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-delete-request/{Id}/approve", Verbs="POST") open class ApproveWorkflowDeleteRequest : IReturn { var id:Int? = null var approve:Boolean? = null var comment:String? = null companion object { private val responseType = WorkflowDeleteRequestResponse::class.java } override fun getResponseType(): Any? = ApproveWorkflowDeleteRequest.responseType } open class WorkflowDeleteRequestResponse { var code:Int? = null var message:String? = null var requiresApproval:Boolean? = null var request:WorkflowDeleteRequestDetail? = null } open class WorkflowDeleteRequestDetail { var id:Int? = null var workflowId:Int? = null var requestedBy:Int? = null var requestedByName:String? = null var approverId:Int? = null var approverName:String? = null var status:WorkflowDeleteRequestStatus? = null var reason:String? = null var comment:String? = null var createdAt:Date? = null var actionAt:Date? = null }