Package org.drinkless.tdlib
Class TdApi.PasswordState
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.PasswordState
-
- Enclosing class:
- TdApi
public static class TdApi.PasswordState extends TdApi.Object
Represents the current state of 2-step verification.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanhasPassportDataTrue, if some Telegram Passport elements were saved.booleanhasPasswordTrue, if a 2-step verification password is set.booleanhasRecoveryEmailAddressTrue, if a recovery email is set.StringpasswordHintHint for the password; may be empty.intpendingResetDateIf not 0, point in time (Unix timestamp) after which the password can be reset immediately using resetPassword.TdApi.EmailAddressAuthenticationCodeInforecoveryEmailAddressCodeInfoInformation about the recovery email address to which the confirmation email was sent; may be null.
-
Constructor Summary
Constructors Constructor Description PasswordState()Represents the current state of 2-step verification.PasswordState(boolean hasPassword, String passwordHint, boolean hasRecoveryEmailAddress, boolean hasPassportData, TdApi.EmailAddressAuthenticationCodeInfo recoveryEmailAddressCodeInfo, int pendingResetDate)Represents the current state of 2-step verification.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
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.
-
pendingResetDate
public int pendingResetDate
If not 0, point in time (Unix timestamp) after which the password can be reset immediately using resetPassword.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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, int pendingResetDate)Represents the current state of 2-step verification.- Parameters:
hasPassword- True, if a 2-step verification password is set.passwordHint- Hint for the password; may be empty.hasRecoveryEmailAddress- True, if a recovery email is set.hasPassportData- True, if some Telegram Passport elements were saved.recoveryEmailAddressCodeInfo- Information about the recovery email address to which the confirmation email was sent; may be null.pendingResetDate- If not 0, point in time (Unix timestamp) after which the password can be reset immediately using resetPassword.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-