MadelineProtoDocs/docs/API_docs/constructors/account_themes.md
2019-09-13 17:13:55 +02:00

40 lines
709 B
Markdown

---
title: account.themes
description: Themes
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: account.themes
[Back to constructors index](index.md)
Themes
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|hash|[int](../types/int.md) | Yes|Hash|
|themes|Array of [Theme](../types/Theme.md) | Yes|Themes|
### Type: [account\_Themes](../types/account_Themes.md)
### Example:
```php
$account_themes = ['_' => 'account.themes', 'hash' => int, 'themes' => [Theme, Theme]];
```
Or, if you're into Lua:
```lua
account_themes={_='account.themes', hash=int, themes={Theme}}
```