MadelineProtoDocs/old_docs/API_docs_v81/constructors/help_termsOfService.md
2018-07-12 20:24:55 +02:00

1.2 KiB

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

Constructor: help.termsOfService

Back to constructors index

Attributes:

Name Type Required
popup Bool Optional
id DataJSON Yes
text string Yes
entities Array of MessageEntity Yes
min_age_confirm int Optional

Type: help_wTermsOfService

Example:

$help_termsOfService = ['_' => 'help.termsOfService', 'popup' => Bool, 'id' => DataJSON, 'text' => 'string', 'entities' => [MessageEntity, MessageEntity], 'min_age_confirm' => int];

PWRTelegram json-encoded version:

{"_": "help.termsOfService", "popup": Bool, "id": DataJSON, "text": "string", "entities": [MessageEntity], "min_age_confirm": int}

Or, if you're into Lua:

help_termsOfService={_='help.termsOfService', popup=Bool, id=DataJSON, text='string', entities={MessageEntity}, min_age_confirm=int}