1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 21:36:55 +01:00
MadelineProto/docs/TD_docs/constructors/messageIsBeingSent.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

44 lines
695 B
Markdown

---
title: messageIsBeingSent
description: Message is outgoing but is yet not delivered to the server
---
## Constructor: messageIsBeingSent
[Back to constructors index](index.md)
Message is outgoing but is yet not delivered to the server
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
### Type: [MessageSendState](../types/MessageSendState.md)
### Example:
```
$messageIsBeingSent = ['_' => 'messageIsBeingSent'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messageIsBeingSent"}
```
Or, if you're into Lua:
```
messageIsBeingSent={_='messageIsBeingSent'}
```