MadelineProtoDocs/docs/API_docs/constructors/help_support.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
850 B
Markdown

---
title: help.support
description: Support
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: help.support
[Back to constructors index](index.md)
Support
### 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];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "help.support", "phone_number": "string", "user": User}
```
Or, if you're into Lua:
```lua
help_support={_='help.support', phone_number='string', user=User}
```