User

class User(val displayName: String? = null, val birthDate: Date? = null)

Defines the current user properties available to process, typically used for presentation purposes.

Constructors

Link copied to clipboard
fun User(displayName: String? = null, birthDate: Date? = null)

Functions

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

Properties

Link copied to clipboard
val birthDate: Date? = null

Optional birth date of the current user.

Link copied to clipboard
val displayName: String? = null

Optional name of the current user.