MadelineProtoDocs/old_docs/API_docs_v57/constructors/photo.md

43 lines
967 B
Markdown
Raw Permalink 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
|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|
2018-04-01 13:19:25 +02:00
### Type: [Photo](../types/Photo.md)
### Example:
```php
2018-04-01 13:19:25 +02:00
$photo = ['_' => 'photo', 'has_stickers' => Bool, 'id' => long, 'access_hash' => long, 'date' => int, 'sizes' => [PhotoSize, PhotoSize]];
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2018-04-01 13:19:25 +02:00
photo={_='photo', has_stickers=Bool, id=long, access_hash=long, date=int, sizes={PhotoSize}}
```