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

936 B

title description image
pageBlockAuthorDate Page block author date https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageBlockAuthorDate

Back to constructors index

Page block author date

Attributes:

Name Type Required Description
author RichText Yes Author
published_date int Yes Published date

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}