Entry

class Entry(    val identifier: String,     val token: Token?,     val tags: Map<String, String>)

Represents the data to store in TokenStorage.

Constructors

Link copied to clipboard
fun Entry(    identifier: String,     token: Token?,     tags: Map<String, String>)

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

Properties

Link copied to clipboard
val identifier: String

The unique identifier for this TokenStorage entry.

Link copied to clipboard
val tags: Map<String, String>

The tags associated with the TokenStorage entry.

Link copied to clipboard
val token: Token?

The Token associated with the TokenStorage entry.