MadelineProto/old_docs/API_docs_v53/constructors/photos_photos.md

37 lines
629 B
Markdown
Raw Normal View History

---
2017-01-19 23:02:27 +01:00
title: photos.photos
description: photos_photos attributes, type and example
---
2017-01-19 23:02:27 +01:00
## Constructor: photos.photos
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|photos|Array of [Photo](../types/Photo.md) | Yes|
|users|Array of [User](../types/User.md) | Yes|
### Type: [photos\_Photos](../types/photos_Photos.md)
### Example:
```
$photos_photos = ['_' => 'photos.photos', 'photos' => [Photo], 'users' => [User], ];
```
Or, if you're into Lua:
```
photos_photos={_='photos.photos', photos={Photo}, users={User}, }
```