AccountStatus

@Serializable
enum AccountStatus : Enum<AccountStatus>

Status of a participant's account, for accounts that must verify an email address. |Status|Description| |---|---| |unverified|User has not consented to use the support email address.| |pending|System is waiting for the user to confirm the address.| |verified|User has consented and can sign in to the Bridge server.| On creation, the initial status of a user account depends on the email verification policy of the app. If verification is required, the account will be unverified until the participant verifies the email address; otherwise it will be enabled. Values: "enabled","disabled","unverified"

Entries

Link copied to clipboard
@SerialName(value = "enabled")
ENABLED
Link copied to clipboard
@SerialName(value = "disabled")
DISABLED
Link copied to clipboard
@SerialName(value = "unverified")
UNVERIFIED

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val serialName: String? = null

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.