MadelineProtoDocs/docs/API_docs/constructors/photoStrippedSize.md

908 B

title description image
photoStrippedSize Stripped size https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: photoStrippedSize

Back to constructors index

Stripped size

Attributes:

Name Type Required Description
type string Yes Stripped size
bytes bytes Yes Bytes

Type: PhotoSize

Example:

$photoStrippedSize = ['_' => 'photoStrippedSize', 'type' => 'string', 'bytes' => 'bytes'];

PWRTelegram json-encoded version:

{"_": "photoStrippedSize", "type": "string", "bytes": {"_": "bytes", "bytes":"base64 encoded bytes"}}

Or, if you're into Lua:

photoStrippedSize={_='photoStrippedSize', type='string', bytes='bytes'}