/* Options: Date: 2026-06-28 14:45:53 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: SetLegalApprovalRequest.* //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/set-legal-approval", Verbs="Post") open class SetLegalApprovalRequest : IReturn { var workflowId:Int? = null var enabled:Boolean? = null companion object { private val responseType = SetLegalApprovalResponse::class.java } override fun getResponseType(): Any? = SetLegalApprovalRequest.responseType } open class SetLegalApprovalResponse : IResponseRequest { var code:Int? = null var message:String? = null var enabled:Boolean? = null } open interface IResponseRequest { var code:Int? var message:String? }