/* Options: Date: 2024-12-22 12:48:58 Version: 8.51 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: 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="/pagestats/{Type}/{Slug}") open class GetPageStats : IReturn, IGet { @SerializedName("type") open var Type:String? = null open var slug:String? = null open var id:Int? = null companion object { private val responseType = GetPageStatsResponse::class.java } override fun getResponseType(): Any? = GetPageStats.responseType } open class GetPageStatsResponse { @SerializedName("type") open var Type:String? = null open var slug:String? = null open var viewCount:Long? = null open var favCount:Long? = null }