MadelineProto/old_docs/API_docs_v65/constructors/documentAttributeImageSize.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

662 B

title description
documentAttributeImageSize documentAttributeImageSize attributes, type and example

Constructor: documentAttributeImageSize

Back to constructors index

Attributes:

Name Type Required
w int Yes
h int Yes

Type: DocumentAttribute

Example:

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

Or, if you're into Lua:

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