/* Options: Date: 2026-02-13 08:04:45 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: SearchDocumentReferenceRequest.* //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-reference/search", Verbs="GET") open class SearchDocumentReferenceRequest : PagingRequest(), IReturn> { var documentCode:String? = null var parentDocumentId:Int? = null var title:String? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = SearchDocumentReferenceRequest.responseType } open class PageResponse : IResponseRequest { var code:Int? = null var message:String? = null @SerializedName("data") var Data:ArrayList = ArrayList() var pagination:Pagination? = null } open class PagingRequest { var page:Int? = null var limit:Int? = null } open class DocumentReferences { var id:Int? = null var parentDocumentId:Int? = null var title:String? = null var documentCode:String? = null var referenceUrl:String? = null var description:String? = null }