Links

@Serializable
data class Links(val next: Link? = null, val prev: Link? = null, val self: Link)

Links for navigating between pages.

Constructors

Link copied to clipboard
constructor(next: Link? = null, prev: Link? = null, self: Link)

Properties

Link copied to clipboard
@SerialName(value = "next")
val next: Link?

Link to the next page of results

Link copied to clipboard
@SerialName(value = "prev")
val prev: Link?

Link to the previous page of results

Link copied to clipboard
@SerialName(value = "self")
val self: Link

Link to the current page