1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 14:06:55 +01:00
MadelineProto/docs/TD_docs/constructors/ok.md
2017-07-23 16:33:46 +02:00

44 lines
587 B
Markdown

---
title: ok
description: Object of this type returns on successful function call for some functions
---
## Constructor: ok
[Back to constructors index](index.md)
Object of this type returns on successful function call for some functions
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
### Type: [Ok](../types/Ok.md)
### Example:
```
$ok = ['_' => 'ok'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "ok"}
```
Or, if you're into Lua:
```
ok={_='ok'}
```