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

913 B

title description image
pageBlockBlockquote Page block blockquote https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageBlockBlockquote

Back to constructors index

Page block blockquote

Attributes:

Name Type Required Description
text RichText Yes Text
caption RichText Yes Caption

Type: PageBlock

Example:

$pageBlockBlockquote = ['_' => 'pageBlockBlockquote', 'text' => RichText, 'caption' => RichText];

PWRTelegram json-encoded version:

{"_": "pageBlockBlockquote", "text": RichText, "caption": RichText}

Or, if you're into Lua:

pageBlockBlockquote={_='pageBlockBlockquote', text=RichText, caption=RichText}