2018-07-12 20:24:55 +02:00
|
|
|
---
|
|
|
|
title: help.termsOfService
|
|
|
|
description: help_termsOfService attributes, type and example
|
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: help.termsOfService
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|---------------|----------|
|
|
|
|
|popup|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|id|[DataJSON](../types/DataJSON.md) | Yes|
|
|
|
|
|text|[string](../types/string.md) | Yes|
|
|
|
|
|entities|Array of [MessageEntity](../types/MessageEntity.md) | Yes|
|
|
|
|
|min\_age\_confirm|[int](../types/int.md) | Optional|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [help\_wTermsOfService](../types/help_wTermsOfService.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2018-07-12 20:24:55 +02:00
|
|
|
$help_termsOfService = ['_' => 'help.termsOfService', 'popup' => Bool, 'id' => DataJSON, 'text' => 'string', 'entities' => [MessageEntity, MessageEntity], 'min_age_confirm' => int];
|
|
|
|
```
|
|
|
|
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_": "help.termsOfService", "popup": Bool, "id": DataJSON, "text": "string", "entities": [MessageEntity], "min_age_confirm": int}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
Or, if you're into Lua:
|
2018-07-12 20:24:55 +02:00
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2018-07-12 20:24:55 +02:00
|
|
|
help_termsOfService={_='help.termsOfService', popup=Bool, id=DataJSON, text='string', entities={MessageEntity}, min_age_confirm=int}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|