/* Options: Date: 2026-04-15 21:22:03 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://api.booklinker.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetLinksCountRequest.* //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="/v1/links/count", Verbs="GET") @DataContract open class GetLinksCountRequest : IReturn { companion object { private val responseType = GetLinksCountResponse::class.java } override fun getResponseType(): Any? = GetLinksCountRequest.responseType } @DataContract open class GetLinksCountResponse { @DataMember(Name="total") @SerializedName("total") open var total:Long? = null @DataMember(Name="responseStatus") @SerializedName("responseStatus") open var responseStatus:ResponseStatus? = null }