MadelineProtoDocs/old_docs/API_docs_v100/constructors/help.support.md
2019-12-27 18:46:25 +01:00

41 lines
800 B
Markdown

---
title: help.support
description: Info on support user.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/constructors/help_support.html
---
# Constructor: help.support
[Back to constructors index](index.md)
Info on support user.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|phone\_number|[string](../types/string.md) | Yes|Phone number|
|user|[User](../types/User.md) | Optional|User|
### Type: [help.Support](../types/help.Support.md)
### Example:
```php
$help.support = ['_' => 'help.support', 'phone_number' => 'string', 'user' => User];
```
Or, if you're into Lua:
```lua
help.support={_='help.support', phone_number='string', user=User}
```