MadelineProto/docs/MTProto_docs/constructors/destroy_session_ok.md

43 lines
707 B
Markdown
Raw Normal View History

---
title: destroy_session_ok
description: destroy_session_ok attributes, type and example
---
## Constructor: destroy\_session\_ok
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|session\_id|[long](../types/long.md) | Yes|
### Type: [DestroySessionRes](../types/DestroySessionRes.md)
### Example:
```
2016-12-30 21:21:36 +01:00
$destroy_session_ok = ['_' => 'destroy_session_ok', 'session_id' => long, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"destroy_session_ok","session_id":"long"}
```
Or, if you're into Lua:
```
destroy_session_ok={_='destroy_session_ok', session_id=long, }
```