OBJECT

LockoutState

Description

User account lockout details.

link GraphQL Schema definition

  • type LockoutState {
  • # Specifies whether the account is locked.
  • isLocked: Boolean!
  • # Mechanism for locking the user account.
  • lockMethod: LockMethod!
  • # Method for unlocking the locked account. Possible values are: self-service,
  • # administrative-unlocking, support-unlocking.
  • unlockMethod: UnlockMethod!
  • # The time at which the account was previously locked.
  • lockedAt: DateTime
  • # The time at which the account was previously unlocked.
  • unlockedAt: DateTime
  • }