AccountInfo

data class AccountInfo(val emailAddress: String? = null, val userId: String? = null) : Parcelable

Stores information related to the user's eMSP account.

Constructors

Link copied to clipboard
fun AccountInfo(emailAddress: String? = null, userId: String? = null)

Properties

Link copied to clipboard
val emailAddress: String? = null

The e-mail address associated with the user's account or null if no email address exists for this account or if an email address is not applicable for this account.

Link copied to clipboard
val userId: String? = null

Unique identifier of the user or null if no userId exists or is relevant for this account.

Inherited functions

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