/* Options: Date: 2026-06-27 01:54:47 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: ExportWorkflowProfileRequest.* //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/export-profile", Verbs="Get") open class ExportWorkflowProfileRequest : IReturn { var workflowId:Int? = null var mode:String? = null companion object { private val responseType = ByteArray::class.java } override fun getResponseType(): Any? = ExportWorkflowProfileRequest.responseType }