/* Options: Date: 2026-04-17 20:33:01 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: SearchTemplateRequest.* //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="/document-template/search", Verbs="GET") open class SearchTemplateRequest : PagingRequest(), IReturn { var title:String? = null var isActive:Boolean? = null companion object { private val responseType = SearchDocumentTemplateResponse::class.java } override fun getResponseType(): Any? = SearchTemplateRequest.responseType } open class SearchDocumentTemplateResponse : IResponseRequest { var code:Int? = null var message:String? = null @SerializedName("data") var Data:ArrayList = ArrayList() var totalCount:Long? = null } open class PagingRequest { var page:Int? = null var limit:Int? = null } open interface IResponseRequest { var code:Int? var message:String? } open class DocumentTemplate { var id:Int? = null @Required() var title:String? = null var description:String? = null var isActive:Boolean? = null var fileKey:String? = null var fileUrl:String? = null var fileName:String? = null var fileSize:Long? = null }