2019-03-08 13:49:23 +01:00
|
|
|
---
|
|
|
|
title: inputWallPaper
|
2019-03-08 14:35:09 +01:00
|
|
|
description: Wallpaper
|
2019-03-08 13:49:23 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputWallPaper
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-03-08 14:35:09 +01:00
|
|
|
Wallpaper
|
|
|
|
|
2019-03-08 13:49:23 +01:00
|
|
|
### Attributes:
|
|
|
|
|
2019-03-08 14:35:09 +01:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|id|[long](../types/long.md) | Yes|ID|
|
|
|
|
|access\_hash|[long](../types/long.md) | Yes|Access hash|
|
2019-03-08 13:49:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputWallPaper](../types/InputWallPaper.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$inputWallPaper = ['_' => 'inputWallPaper', 'id' => long, 'access_hash' => long];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
inputWallPaper={_='inputWallPaper', id=long, access_hash=long}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|