public static class TdApi.SecretChat extends TdApi.Object
| Modifier and Type | Field and Description |
|---|---|
static int |
CONSTRUCTOR
Identifier uniquely determining type of the object.
|
int |
id
Secret chat identifier.
|
boolean |
isOutbound
True, if the chat was created by the current user; false otherwise.
|
byte[] |
keyHash
Hash of the currently used key for comparison with the hash of the chat partner's key.
|
int |
layer
Secret chat layer; determines features supported by the chat partner's application.
|
TdApi.SecretChatState |
state
State of the secret chat.
|
long |
userId
Identifier of the chat partner.
|
| Constructor and Description |
|---|
SecretChat()
Represents a secret chat.
|
SecretChat(int id,
long userId,
TdApi.SecretChatState state,
boolean isOutbound,
byte[] keyHash,
int layer)
Represents a secret chat.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getConstructor()
Returns an identifier uniquely determining type of the object.
|
toStringpublic int id
public long userId
public TdApi.SecretChatState state
public boolean isOutbound
public byte[] keyHash
public int layer
public static final int CONSTRUCTOR
public SecretChat()
public SecretChat(int id,
long userId,
TdApi.SecretChatState state,
boolean isOutbound,
byte[] keyHash,
int layer)
id - Secret chat identifier.userId - Identifier of the chat partner.state - State of the secret chat.isOutbound - True, if the chat was created by the current user; false otherwise.keyHash - Hash of the currently used key for comparison with the hash of the chat partner's key. This is a string of 36 little-endian bytes, which must be split into groups of 2 bits, each denoting a pixel of one of 4 colors FFFFFF, D5E6F3, 2D5775, and 2F99C9. The pixels must be used to make a 12x12 square image filled from left to right, top to bottom. Alternatively, the first 32 bytes of the hash can be converted to the hexadecimal format and printed as 32 2-digit hex numbers.layer - Secret chat layer; determines features supported by the chat partner's application. Nested text entities and underline and strikethrough entities are supported if the layer >= 101, files bigger than 2000MB are supported if the layer >= 143, spoiler and custom emoji text entities are supported if the layer >= 144.public int getConstructor()
TdApi.ObjectgetConstructor in class TdApi.Object