MadelineProtoDocs/old_docs/API_docs_v25/constructors/pageBlockAudio.md

40 lines
783 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: pageBlockAudio
description: Audio
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageBlockAudio
[Back to constructors index](index.md)
Audio
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|audio\_id|[long](../types/long.md) | Yes|Audio ID (to be fetched from the container [page](../constructors/page.md) constructor|
|caption|[RichText](../types/RichText.md) | Yes|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```php
$pageBlockAudio = ['_' => 'pageBlockAudio', 'audio_id' => long, 'caption' => RichText];
```
Or, if you're into Lua:
```lua
pageBlockAudio={_='pageBlockAudio', audio_id=long, caption=RichText}
```