Package org.drinkless.tdlib
Class TdApi.CallbackQueryPayloadDataWithPassword
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.CallbackQueryPayload
-
- org.drinkless.tdlib.TdApi.CallbackQueryPayloadDataWithPassword
-
- Enclosing class:
- TdApi
public static class TdApi.CallbackQueryPayloadDataWithPassword extends TdApi.CallbackQueryPayload
The payload for a callback button requiring password.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.byte[]dataData that was attached to the callback button.StringpasswordThe password for the current user.
-
Constructor Summary
Constructors Constructor Description CallbackQueryPayloadDataWithPassword()The payload for a callback button requiring password.CallbackQueryPayloadDataWithPassword(String password, byte[] data)The payload for a callback button requiring password.
-
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
-
password
public String password
The password for the current user.
-
data
public byte[] data
Data that was attached to the callback button.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CallbackQueryPayloadDataWithPassword
public CallbackQueryPayloadDataWithPassword()
The payload for a callback button requiring password.
-
CallbackQueryPayloadDataWithPassword
public CallbackQueryPayloadDataWithPassword(String password, byte[] data)
The payload for a callback button requiring password.- Parameters:
password- The password for the current user.data- Data that was attached to the callback button.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-