UserProfile

data class UserProfile(val id: Uid<UserProfile>, val displayName: String?) : Parcelable

Represents a user profile.

Parameters

id

The unique user profile ID.

displayName

The display name of the user or null when no display name is specified for this user profile.

Constructors

Link copied to clipboard
fun UserProfile(id: Uid<UserProfile>, displayName: String?)

Properties

Link copied to clipboard
val displayName: String?
Link copied to clipboard
val id: Uid<UserProfile>

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)