MadelineProtoDocs/old_docs/API_docs_v40/constructors/sendMessageUploadPhotoAction.md
2018-04-01 13:24:46 +02:00

43 lines
768 B
Markdown

---
title: sendMessageUploadPhotoAction
description: sendMessageUploadPhotoAction attributes, type and example
---
## Constructor: sendMessageUploadPhotoAction
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|progress|[int](../types/int.md) | Yes|
### Type: [SendMessageAction](../types/SendMessageAction.md)
### Example:
```
$sendMessageUploadPhotoAction = ['_' => 'sendMessageUploadPhotoAction', 'progress' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "sendMessageUploadPhotoAction", "progress": int}
```
Or, if you're into Lua:
```
sendMessageUploadPhotoAction={_='sendMessageUploadPhotoAction', progress=int}
```