MadelineProtoDocs/old_docs/API_docs_v25/constructors/audioEmpty.md
2018-04-04 19:52:48 +02:00

44 lines
655 B
Markdown

---
title: audioEmpty
description: audioEmpty attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
## Constructor: audioEmpty
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|id|[long](../types/long.md) | Yes|
### Type: [Audio](../types/Audio.md)
### Example:
```
$audioEmpty = ['_' => 'audioEmpty', 'id' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "audioEmpty", "id": long}
```
Or, if you're into Lua:
```
audioEmpty={_='audioEmpty', id=long}
```