/* Options: Date: 2026-06-28 01:07: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: GetLegalApprovalConfigRequest.* //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/legal-approval-config", Verbs="Get") open class GetLegalApprovalConfigRequest : IReturn { var workflowId:Int? = null companion object { private val responseType = GetLegalApprovalConfigResponse::class.java } override fun getResponseType(): Any? = GetLegalApprovalConfigRequest.responseType } open class GetLegalApprovalConfigResponse : IResponseRequest { var code:Int? = null var message:String? = null var enabled:Boolean? = null var approvers:ArrayList = ArrayList() } open interface IResponseRequest { var code:Int? var message:String? } open class StampClerkOption { var id:Int? = null var fullName:String? = null var departmentName:String? = null }