MadelineProtoDocs/old_docs/API_docs_v44/constructors/documentAttributeImageSize.md
2018-04-01 13:24:46 +02:00

796 B

title description
documentAttributeImageSize documentAttributeImageSize attributes, type and example

Constructor: documentAttributeImageSize

Back to constructors index

Attributes:

Name Type Required
w int Optional
h int Optional

Type: DocumentAttribute

Example:

$documentAttributeImageSize = ['_' => 'documentAttributeImageSize', 'w' => int, 'h' => int];

PWRTelegram json-encoded version:

{"_": "documentAttributeImageSize", "w": int, "h": int}

Or, if you're into Lua:

documentAttributeImageSize={_='documentAttributeImageSize', w=int, h=int}