MembersList

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

Constructors

Link copied to clipboard
fun MembersList(items: List<Member> = 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<Member>
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