47 lines
1.4 KiB
Markdown
47 lines
1.4 KiB
Markdown
---
|
|
title: theme
|
|
description: Theme
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: theme
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Theme
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|creator|[Bool](../types/Bool.md) | Optional|Whether the current user is the creator of this theme|
|
|
|default|[Bool](../types/Bool.md) | Optional|Whether this is the default theme|
|
|
|id|[long](../types/long.md) | Yes|Theme ID|
|
|
|access\_hash|[long](../types/long.md) | Yes|Theme access hash|
|
|
|slug|[string](../types/string.md) | Yes|Unique theme ID|
|
|
|title|[string](../types/string.md) | Yes|Theme name|
|
|
|document|[Document](../types/Document.md) | Optional|Theme|
|
|
|settings|[ThemeSettings](../types/ThemeSettings.md) | Optional|Theme settings|
|
|
|installs\_count|[int](../types/int.md) | Yes|Installation count|
|
|
|
|
|
|
|
|
### Type: [Theme](../types/Theme.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$theme = ['_' => 'theme', 'creator' => Bool, 'default' => Bool, 'id' => long, 'access_hash' => long, 'slug' => 'string', 'title' => 'string', 'document' => Document, 'settings' => ThemeSettings, 'installs_count' => int];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
theme={_='theme', creator=Bool, default=Bool, id=long, access_hash=long, slug='string', title='string', document=Document, settings=ThemeSettings, installs_count=int}
|
|
|
|
```
|
|
|
|
|