Package org.drinkless.tdlib
Class TdApi.Passkey
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Passkey
- Enclosing class:
- TdApi
Describes a passkey.
-
Field Summary
FieldsModifier and TypeFieldDescriptionintPoint in time (Unix timestamp) when the passkey was added.static final intIdentifier uniquely determining type of the object.Unique identifier of the passkey.intPoint in time (Unix timestamp) when the passkey was used last time; 0 if never.Name of the passkey.longIdentifier of the custom emoji that is used as the icon of the software, which created the passkey; 0 if unknown. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
id
Unique identifier of the passkey. -
name
Name of the passkey. -
additionDate
public int additionDatePoint in time (Unix timestamp) when the passkey was added. -
lastUsageDate
public int lastUsageDatePoint in time (Unix timestamp) when the passkey was used last time; 0 if never. -
softwareIconCustomEmojiId
public long softwareIconCustomEmojiIdIdentifier of the custom emoji that is used as the icon of the software, which created the passkey; 0 if unknown. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
Passkey
public Passkey()Describes a passkey. -
Passkey
public Passkey(String id, String name, int additionDate, int lastUsageDate, long softwareIconCustomEmojiId) Describes a passkey.- Parameters:
id- Unique identifier of the passkey.name- Name of the passkey.additionDate- Point in time (Unix timestamp) when the passkey was added.lastUsageDate- Point in time (Unix timestamp) when the passkey was used last time; 0 if never.softwareIconCustomEmojiId- Identifier of the custom emoji that is used as the icon of the software, which created the passkey; 0 if unknown.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-