mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 22:07:46 +01:00
28 lines
554 B
Markdown
28 lines
554 B
Markdown
|
---
|
||
|
title: pageBlockBlockquote
|
||
|
description: pageBlockBlockquote attributes, type and example
|
||
|
---
|
||
|
## Constructor: pageBlockBlockquote
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|text|[RichText](../types/RichText.md) | Required|
|
||
|
|caption|[RichText](../types/RichText.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [PageBlock](../types/PageBlock.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$pageBlockBlockquote = ['_' => 'pageBlockBlockquote', 'text' => RichText, 'caption' => RichText, ];
|
||
|
```
|
||
|
|