MadelineProtoDocs/docs/API_docs/constructors/inputWallPaper.md

40 lines
717 B
Markdown
Raw Normal View History

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 |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|id|[long](../types/long.md) | Yes|Wallpaper ID|
2019-03-08 14:35:09 +01:00
|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}
```