LikePageInfo

@Serializable
data class LikePageInfo(val total: Int?, val currentPage: Int?, val lastPage: Int?, val perPage: Int?, val hasNextPage: Boolean?)(source)

Constructors

Link copied to clipboard
constructor(total: Int?, currentPage: Int?, lastPage: Int?, perPage: Int?, hasNextPage: Boolean?)

Properties

Link copied to clipboard
@SerialName(value = "currentPage")
val currentPage: Int?
Link copied to clipboard
@SerialName(value = "hasNextPage")
val hasNextPage: Boolean?
Link copied to clipboard
@SerialName(value = "lastPage")
val lastPage: Int?
Link copied to clipboard
@SerialName(value = "perPage")
val perPage: Int?
Link copied to clipboard
@SerialName(value = "total")
val total: Int?