/* Options: Date: 2024-05-02 19:48:35 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPageStats.* //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("/pagestats/{Type}/{Slug}") open class GetPageStats : IReturn, IGet { @SerializedName("type") var Type:String? = null var slug:String? = null var id:Int? = null companion object { private val responseType = GetPageStatsResponse::class.java } override fun getResponseType(): Any? = GetPageStats.responseType } open class GetPageStatsResponse { @SerializedName("type") var Type:String? = null var slug:String? = null var viewCount:Long? = null var favCount:Long? = null }