MadelineProtoDocs/old_docs/API_docs_v105/constructors/help_termsOfService.md

43 lines
1.1 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: help.termsOfService
description: Terms of service
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: help.termsOfService
[Back to constructors index](index.md)
Terms of service
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|popup|[Bool](../types/Bool.md) | Optional|Popup?|
|id|[DataJSON](../types/DataJSON.md) | Yes|ID|
|text|[string](../types/string.md) | Yes|Text|
|entities|Array of [MessageEntity](../types/MessageEntity.md) | Yes|Entities|
|min\_age\_confirm|[int](../types/int.md) | Optional|Min age confirm|
### Type: [help\_TermsOfService](../types/help_TermsOfService.md)
### Example:
```php
$help_termsOfService = ['_' => 'help.termsOfService', 'popup' => Bool, 'id' => DataJSON, 'text' => 'string', 'entities' => [MessageEntity, MessageEntity], 'min_age_confirm' => int];
```
Or, if you're into Lua:
```lua
help_termsOfService={_='help.termsOfService', popup=Bool, id=DataJSON, text='string', entities={MessageEntity}, min_age_confirm=int}
```