DataSetsList

data class DataSetsList(    val items: List<Dataset> = emptyList(),     val returnedRows: Int = 0,     val totalRows: Int? = null,     val moreRows: Boolean? = null,     val jsonVersion: Int = 0)

Constructors

Link copied to clipboard
fun DataSetsList(items: List<Dataset> = emptyList(), returnedRows: Int = 0, totalRows: Int? = null, moreRows: Boolean? = null, jsonVersion: Int = 0)

Properties

Link copied to clipboard
@SerializedName(value = "items")
@Expose
val items: List<Dataset>
Link copied to clipboard
@SerializedName(value = "JSONversion")
@Expose
val jsonVersion: Int = 0
Link copied to clipboard
@SerializedName(value = "moreRows")
@Expose
val moreRows: Boolean? = null
Link copied to clipboard
@SerializedName(value = "returnedRows")
@Expose
val returnedRows: Int = 0
Link copied to clipboard
@SerializedName(value = "totalRows")
@Expose
val totalRows: Int? = null