RemoteData

data class RemoteData<T>(data: List<T>, last_page: Int)

Functions

component1
Link copied to clipboard
common
operator fun component1(): List<T>
component2
Link copied to clipboard
common
operator fun component2(): Int
copy
Link copied to clipboard
common
fun copy(data: List<T> = listOf(), last_page: Int = 0): RemoteData<T>
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

data
Link copied to clipboard
common
val data: List<T>
last_page
Link copied to clipboard
common
val last_page: Int = 0