MadelineProtoDocs/docs/API_docs/constructors/pageBlockAuthorDate.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

888 B

title description image
pageBlockAuthorDate pageBlockAuthorDate attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageBlockAuthorDate

Back to constructors index

Attributes:

Name Type Required
author RichText Yes
published_date int Yes

Type: PageBlock

Example:

$pageBlockAuthorDate = ['_' => 'pageBlockAuthorDate', 'author' => RichText, 'published_date' => int];

PWRTelegram json-encoded version:

{"_": "pageBlockAuthorDate", "author": RichText, "published_date": int}

Or, if you're into Lua:

pageBlockAuthorDate={_='pageBlockAuthorDate', author=RichText, published_date=int}