MadelineProtoDocs/docs/API_docs/constructors/pageCaption.md

40 lines
712 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: pageCaption
description: Page caption
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageCaption
[Back to constructors index](index.md)
Page caption
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|text|[RichText](../types/RichText.md) | Yes|Caption|
|credit|[RichText](../types/RichText.md) | Yes|Credits|
2018-12-26 02:56:50 +01:00
### Type: [PageCaption](../types/PageCaption.md)
### Example:
```php
$pageCaption = ['_' => 'pageCaption', 'text' => RichText, 'credit' => RichText];
```
Or, if you're into Lua:
```lua
pageCaption={_='pageCaption', text=RichText, credit=RichText}
```