/* Options: Date: 2025-12-06 05:27:34 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindSlips.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/qry/slips") open class FindSlips : IReturn> { open var id:String? = null open var slipFormat:SlipFormat? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = FindSlips.responseType } open class PaginatedResult : IPaginatedResult { @SerializedName("data") open var Data:ArrayList = ArrayList() override var currentPage:Long? = null override var pageSize:Long? = null override var totalItems:Long? = null override var totalPages:Long? = null } enum class SlipFormat(val value:Int) { @SerializedName("0") Default(0), @SerializedName("1") WalletDTO(1), } interface IPaginatedResult { var currentPage:Long? var pageSize:Long? var totalItems:Long? var totalPages:Long? }