1.2 KiB
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
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}