mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
30 lines
706 B
Markdown
30 lines
706 B
Markdown
---
|
|
title: "sendMessageUploadVideoAction"
|
|
description: "User is uploading a video."
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: sendMessageUploadVideoAction
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
User is uploading a video.
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|progress|[int](/API_docs/types/int.html) | Yes|Progress percentage|
|
|
|
|
|
|
|
|
### Type: [SendMessageAction](/API_docs/types/SendMessageAction.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$sendMessageUploadVideoAction = ['_' => 'sendMessageUploadVideoAction', 'progress' => int];
|
|
```
|