/* Options: Date: 2026-04-30 21:07:35 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: SearchPurchaseHistoryRequest.* //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="/purchase-history/search", Verbs="GET") open class SearchPurchaseHistoryRequest : PagingRequest(), IReturn> { var name:String? = null var workflowId:Int? = null var equipmentId:Int? = null var providerId:Int? = null var createdFrom:Date? = null var createdTo:Date? = null var onlyMissingEquipment:Boolean? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = SearchPurchaseHistoryRequest.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 }