39 lines
570 B
Markdown
39 lines
570 B
Markdown
---
|
|
title: photoEmpty
|
|
description: Empty photo
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: photoEmpty
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Empty photo
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|id|[long](../types/long.md) | Yes|ID|
|
|
|
|
|
|
|
|
### Type: [Photo](../types/Photo.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$photoEmpty = ['_' => 'photoEmpty', 'id' => long];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
photoEmpty={_='photoEmpty', id=long}
|
|
|
|
```
|
|
|
|
|