MadelineProtoDocs/old_docs/API_docs_v105/constructors/inputReportReasonOther.md
2019-09-13 17:13:55 +02:00

39 lines
692 B
Markdown

---
title: inputReportReasonOther
description: Report reason other
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputReportReasonOther
[Back to constructors index](index.md)
Report reason other
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[string](../types/string.md) | Yes|Text|
### Type: [ReportReason](../types/ReportReason.md)
### Example:
```php
$inputReportReasonOther = ['_' => 'inputReportReasonOther', 'text' => 'string'];
```
Or, if you're into Lua:
```lua
inputReportReasonOther={_='inputReportReasonOther', text='string'}
```