UserEmails

data class UserEmails(val primary: Boolean? = null, val type: String? = null, val value: String? = null)

Constructors

Link copied to clipboard
constructor(primary: Boolean? = null, type: String? = null, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val primary: Boolean? = null

When true, this is the primary email associated with the user.

Link copied to clipboard
val type: String? = null

The type of email.

Link copied to clipboard
val value: String? = null

The email address. This value must be unique across the identity store.