34 lines
539 B
Markdown
34 lines
539 B
Markdown
|
---
|
||
|
title: inputMediaDice
|
||
|
description: Send a [dice-based animated sticker](https://core.telegram.org/api/dice)
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: inputMediaDice
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Send a [dice-based animated sticker](https://core.telegram.org/api/dice)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputMedia](../types/InputMedia.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$inputMediaDice = ['_' => 'inputMediaDice'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
inputMediaDice={_='inputMediaDice'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|