MadelineProtoDocs/docs/API_docs/constructors/help_support.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

45 lines
826 B
Markdown

---
title: help.support
description: help_support attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: help.support
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|phone\_number|[string](../types/string.md) | Yes|
|user|[User](../types/User.md) | Optional|
### Type: [help\_Support](../types/help_Support.md)
### Example:
```
$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:
```
help_support={_='help.support', phone_number='string', user=User}
```