Package org.drinkless.tdlib
Class TdApi.RecoverPassword
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.RecoverPassword
-
- Enclosing class:
- TdApi
public static class TdApi.RecoverPassword extends TdApi.Function
Recovers the 2-step verification password using a recovery code sent to an email address that was previously set up.Returns
PasswordState
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringnewHintNew password hint; may be empty.StringnewPasswordNew password of the user; may be empty to remove the password.StringrecoveryCodeRecovery code to check.
-
Constructor Summary
Constructors Constructor Description RecoverPassword()Default constructor for a function, which recovers the 2-step verification password using a recovery code sent to an email address that was previously set up.RecoverPassword(String recoveryCode, String newPassword, String newHint)Creates a function, which recovers the 2-step verification password using a recovery code sent to an email address that was previously set up.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
recoveryCode
public String recoveryCode
Recovery code to check.
-
newPassword
public String newPassword
New password of the user; may be empty to remove the password.
-
newHint
public String newHint
New password hint; may be empty.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RecoverPassword
public RecoverPassword()
Default constructor for a function, which recovers the 2-step verification password using a recovery code sent to an email address that was previously set up.Returns
PasswordState
-
RecoverPassword
public RecoverPassword(String recoveryCode, String newPassword, String newHint)
Creates a function, which recovers the 2-step verification password using a recovery code sent to an email address that was previously set up.Returns
PasswordState- Parameters:
recoveryCode- Recovery code to check.newPassword- New password of the user; may be empty to remove the password.newHint- New password hint; may be empty.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-