MadelineProtoDocs/docs/API_docs/constructors/photo.md

45 lines
1.2 KiB
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: photo
2018-12-26 02:56:50 +01:00
description: Photo
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: photo
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
2018-12-26 02:56:50 +01:00
Photo
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|has\_stickers|[Bool](../types/Bool.md) | Optional|Whether the photo has mask stickers attached to it|
2018-12-26 02:56:50 +01:00
|id|[long](../types/long.md) | Yes|ID|
|access\_hash|[long](../types/long.md) | Yes|Access hash|
2019-12-27 17:48:04 +01:00
|file\_reference|[bytes](../types/bytes.md) | Yes|[file reference](https://core.telegram.org/api/file_reference)|
|date|[int](../types/int.md) | Yes|Date of upload|
2018-12-26 02:56:50 +01:00
|sizes|Array of [PhotoSize](../types/PhotoSize.md) | Yes|Sizes|
2019-12-27 17:48:04 +01:00
|dc\_id|[int](../types/int.md) | Yes|DC ID to use for download|
2018-04-01 13:19:25 +02:00
### Type: [Photo](../types/Photo.md)
### Example:
```php
2019-06-23 13:07:51 +02:00
$photo = ['_' => 'photo', 'has_stickers' => Bool, 'id' => long, 'access_hash' => long, 'file_reference' => 'bytes', 'date' => int, 'sizes' => [PhotoSize, PhotoSize], 'dc_id' => int];
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2019-06-23 13:07:51 +02:00
photo={_='photo', has_stickers=Bool, id=long, access_hash=long, file_reference='bytes', date=int, sizes={PhotoSize}, dc_id=int}
2018-04-01 13:19:25 +02:00
```