User

class User(displayName: String?, birthDate: Date?)

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

Constructors

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

Functions

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

Properties

birthDate
Link copied to clipboard
val birthDate: Date? = null
Optional birth date of the current user.
displayName
Link copied to clipboard
val displayName: String? = null
Optional name of the current user.