1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 04:39:37 +01:00
MadelineProto/old_docs/API_docs_v46/constructors/inputChatUploadedPhoto.md
2017-07-23 16:11:02 +02:00

860 B

title description
inputChatUploadedPhoto inputChatUploadedPhoto attributes, type and example

Constructor: inputChatUploadedPhoto

Back to constructors index

Attributes:

Name Type Required
file InputFile Yes
crop InputPhotoCrop Yes

Type: InputChatPhoto

Example:

$inputChatUploadedPhoto = ['_' => 'inputChatUploadedPhoto', 'file' => InputFile, 'crop' => InputPhotoCrop, ];

PWRTelegram json-encoded version:

{"_":"inputChatUploadedPhoto","file":"InputFile","crop":"InputPhotoCrop"}

Or, if you're into Lua:

inputChatUploadedPhoto={_='inputChatUploadedPhoto', file=InputFile, crop=InputPhotoCrop, }