MadelineProto/old_docs/API_docs_v25/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, }