2018-04-01 13:19:25 +02:00
|
|
|
---
|
|
|
|
title: inputSingleMedia
|
|
|
|
description: inputSingleMedia attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputSingleMedia
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|---------------|----------|
|
|
|
|
|media|[MessageMedia, Message, Update or InputMedia](../types/InputMedia.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputSingleMedia](../types/InputSingleMedia.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2018-04-01 13:24:46 +02:00
|
|
|
$inputSingleMedia = ['_' => 'inputSingleMedia', 'media' => InputMedia];
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2018-04-01 13:24:46 +02:00
|
|
|
{"_": "inputSingleMedia", "media": InputMedia}
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2018-04-01 13:24:46 +02:00
|
|
|
inputSingleMedia={_='inputSingleMedia', media=InputMedia}
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|