UserState

enum UserState : Enum<UserState> , ConvertibleToJava<UserState>

Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.

Entries

Link copied to clipboard

User state is active.

Link copied to clipboard

User is blocked. Blocked users cannot authenticate at developer portal or call API.

Link copied to clipboard

User account is pending. Requires identity confirmation before it can be made active.

Link copied to clipboard

User account is closed. All identities and related entities are removed.

Types

Link copied to clipboard
object Companion

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
val javaValue: UserState
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toJava(): UserState
Link copied to clipboard
fun valueOf(value: String): UserState

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.