Module tdlight.api

Class TdApi.PasswordState

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.PasswordState
Enclosing class:
TdApi

public static final class TdApi.PasswordState extends TdApi.Object
Represents the current state of 2-step verification.
  • Field Details

    • hasPassword

      public boolean hasPassword
      True, if a 2-step verification password is set.
    • passwordHint

      public String passwordHint
      Hint for the password; may be empty.
    • hasRecoveryEmailAddress

      public boolean hasRecoveryEmailAddress
      True, if a recovery email is set.
    • hasPassportData

      public boolean hasPassportData
      True, if some Telegram Passport elements were saved.
    • recoveryEmailAddressCodeInfo

      public TdApi.EmailAddressAuthenticationCodeInfo recoveryEmailAddressCodeInfo
      Information about the recovery email address to which the confirmation email was sent; may be null.
    • loginEmailAddressPattern

      public String loginEmailAddressPattern
      Pattern of the email address set up for logging in.
    • pendingResetDate

      public int pendingResetDate
      If not 0, point in time (Unix timestamp) after which the 2-step verification password can be reset immediately using resetPassword.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • PasswordState

      public PasswordState()
      Represents the current state of 2-step verification.
    • PasswordState

      public PasswordState(boolean hasPassword, String passwordHint, boolean hasRecoveryEmailAddress, boolean hasPassportData, TdApi.EmailAddressAuthenticationCodeInfo recoveryEmailAddressCodeInfo, String loginEmailAddressPattern, int pendingResetDate)
      Represents the current state of 2-step verification.
      Parameters:
      hasPassword - boolean True, if a 2-step verification password is set.
      passwordHint - String Hint for the password; may be empty.
      hasRecoveryEmailAddress - boolean True, if a recovery email is set.
      hasPassportData - boolean True, if some Telegram Passport elements were saved.
      recoveryEmailAddressCodeInfo - EmailAddressAuthenticationCodeInfo Information about the recovery email address to which the confirmation email was sent; may be null.
      loginEmailAddressPattern - String Pattern of the email address set up for logging in.
      pendingResetDate - int If not 0, point in time (Unix timestamp) after which the 2-step verification password can be reset immediately using resetPassword.
    • PasswordState

      public PasswordState(DataInput input) throws IOException
      Represents the current state of 2-step verification.
      Throws:
      IOException
  • Method Details