/* Options: Date: 2026-02-10 07:42:18 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: WorkflowStatisticsByTypeRequest.* //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/statistics-by-type", Verbs="GET") open class WorkflowStatisticsByTypeRequest : IReturn { var typeId:Int? = null companion object { private val responseType = WorkflowStatisticsResponse::class.java } override fun getResponseType(): Any? = WorkflowStatisticsByTypeRequest.responseType } open class WorkflowStatisticsResponse { var code:Int? = null var message:String? = null @SerializedName("data") var Data:ArrayList = ArrayList() } open class LeftMenuItem { var id:Int? = null var name:String? = null var count:Int? = null var isParty:Boolean? = null var level1ParentId:Int? = null var level2ParentId:Int? = null var level:Int? = null @SerializedName("type") var Type:String? = null var key:String? = null @Ignore() var children:ArrayList = ArrayList() }