2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: inputChatPhoto
|
|
|
|
description: inputChatPhoto attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputChatPhoto
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|id|[InputPhoto](../types/InputPhoto.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputChatPhoto](../types/InputChatPhoto.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$inputChatPhoto = ['_' => 'inputChatPhoto', 'id' => InputPhoto, ];
|
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
inputChatPhoto={_='inputChatPhoto', id=InputPhoto, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|