mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
32 lines
844 B
Markdown
32 lines
844 B
Markdown
---
|
|
title: "photos.photos"
|
|
description: "Full list of photos with auxiliary data."
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
redirect_from: /API_docs/constructors/photos_photos.html
|
|
---
|
|
# Constructor: photos.photos
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Full list of photos with auxiliary data.
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|photos|Array of [Photo](/API_docs/types/Photo.html) | Yes|List of photos|
|
|
|users|Array of [User](/API_docs/types/User.html) | Yes|List of mentioned users|
|
|
|
|
|
|
|
|
### Type: [photos.Photos](/API_docs/types/photos.Photos.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$photos_photos = ['_' => 'photos.photos', 'photos' => [Photo, Photo], 'users' => [User, User]];
|
|
```
|