MadelineProtoDocs/docs/API_docs/constructors/pageCaption.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
838 B
Markdown

---
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 |
|----------|---------------|----------|-------------|
|text|[RichText](../types/RichText.md) | Yes|Text|
|credit|[RichText](../types/RichText.md) | Yes|Credit|
### Type: [PageCaption](../types/PageCaption.md)
### Example:
```php
$pageCaption = ['_' => 'pageCaption', 'text' => RichText, 'credit' => RichText];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "pageCaption", "text": RichText, "credit": RichText}
```
Or, if you're into Lua:
```lua
pageCaption={_='pageCaption', text=RichText, credit=RichText}
```