MadelineProto/docs/TD_docs/constructors/optionInteger.md

38 lines
554 B
Markdown
Raw Normal View History

---
title: optionInteger
description: Integer option
---
## Constructor: optionInteger
[Back to constructors index](index.md)
Integer option
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|value|[int](../types/int.md) | Yes|Value of an option|
### Type: [OptionValue](../types/OptionValue.md)
### Example:
```
$optionInteger = ['_' => 'optionInteger', 'value' => int, ];
```
Or, if you're into Lua:
```
optionInteger={_='optionInteger', value=int, }
```