MadelineProtoDocs/old_docs/API_docs_v25/constructors/inputPhoto.md
2019-12-27 17:48:04 +01:00

40 lines
817 B
Markdown

---
title: inputPhoto
description: Defines a photo for further interaction.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPhoto
[Back to constructors index](index.md)
Defines a photo for further interaction.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[long](../types/long.md) | Yes|Photo identifier|
|access\_hash|[long](../types/long.md) | Yes|**access\_hash** value from the [photo](../constructors/photo.md) constructor|
### Type: [InputPhoto](../types/InputPhoto.md)
### Example:
```php
$inputPhoto = ['_' => 'inputPhoto', 'id' => long, 'access_hash' => long];
```
Or, if you're into Lua:
```lua
inputPhoto={_='inputPhoto', id=long, access_hash=long}
```