MadelineProtoDocs/old_docs/API_docs_v105/constructors/photoStrippedSize.md
2019-09-13 17:13:55 +02:00

40 lines
735 B
Markdown

---
title: photoStrippedSize
description: Stripped size
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: photoStrippedSize
[Back to constructors index](index.md)
Stripped size
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|type|[string](../types/string.md) | Yes|Stripped size|
|bytes|[bytes](../types/bytes.md) | Yes|Bytes|
### Type: [PhotoSize](../types/PhotoSize.md)
### Example:
```php
$photoStrippedSize = ['_' => 'photoStrippedSize', 'type' => 'string', 'bytes' => 'bytes'];
```
Or, if you're into Lua:
```lua
photoStrippedSize={_='photoStrippedSize', type='string', bytes='bytes'}
```