2019-03-08 13:49:23 +01:00
|
|
|
---
|
|
|
|
title: codeSettings
|
2019-03-08 14:35:09 +01:00
|
|
|
description: Code settings
|
2019-03-08 13:49:23 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: codeSettings
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-03-08 14:35:09 +01:00
|
|
|
Code settings
|
|
|
|
|
2019-03-08 13:49:23 +01:00
|
|
|
### Attributes:
|
|
|
|
|
2019-03-08 14:35:09 +01:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|allow\_flashcall|[Bool](../types/Bool.md) | Optional|Allow flashcal?|
|
|
|
|
|current\_number|[Bool](../types/Bool.md) | Optional|Current number?|
|
|
|
|
|app\_hash\_persistent|[Bool](../types/Bool.md) | Optional|Persistent hash?|
|
|
|
|
|app\_hash|[string](../types/string.md) | Optional|Hash type|
|
2019-03-08 13:49:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [CodeSettings](../types/CodeSettings.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$codeSettings = ['_' => 'codeSettings', 'allow_flashcall' => Bool, 'current_number' => Bool, 'app_hash_persistent' => Bool, 'app_hash' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
codeSettings={_='codeSettings', allow_flashcall=Bool, current_number=Bool, app_hash_persistent=Bool, app_hash='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|