messages.setEncryptedTyping
Layer 225
Constructor ID: 0x791451ed
Returns: Bool
Parameters
| Name | Type | Description |
|---|---|---|
peer | InputEncryptedChat | |
typing | bool |
Example
go
result, err := client.Raw(&tg.SetEncryptedTypingRequest{
peer: nil, // InputEncryptedChat
typing: false,
})
if err != nil {
panic(err)
}
print(result)