/* Options: Date: 2026-04-18 00:18:31 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: GetWorkflowByIdRequest.* //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/{Id}", Verbs="GET") open class GetWorkflowByIdRequest : IReturn { var id:Int? = null companion object { private val responseType = Workflow::class.java } override fun getResponseType(): Any? = GetWorkflowByIdRequest.responseType } open class Workflow { var id:Int? = null @Required() @StringLength(500) var title:String? = null @StringLength(4000) var description:String? = null @StringLength(100) var documentCode:String? = null var documentTypeId:Int? = null var isInstance:Boolean? = null var mainId:Int? = null var isActive:Boolean? = null var statusId:Int? = null var accountId:Int? = null var departmentId:Int? = null @Ignore() var scopeType:Int? = null @StringLength(500) var createdBy:String? = null var createdAt:Date? = null @StringLength(500) var updatedBy:String? = null var updatedAt:Date? = null }