io.elderscrollslegends.ResultCounters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elderscrolls-legends-java Show documentation
Show all versions of elderscrolls-legends-java Show documentation
A java wrapper around the Elder Scrolls: Legends API of https://elderscrollslegends.io
The newest version!
package io.elderscrollslegends
import com.fasterxml.jackson.annotation.JsonProperty
open class ResultCounters (
@JsonProperty("_pageSize")
open val pageSize: Int,
@JsonProperty("_totalCount")
open val totalCount: Int
)