MadelineProtoDocs/docs/API_docs/constructors/chatPhoto.md

833 B

title description image
chatPhoto Chat photo https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatPhoto

Back to constructors index

Chat photo

Attributes:

Name Type Required Description
photo_small FileLocation Yes Photo small
photo_big FileLocation Yes Photo big
dc_id int Yes DC ID

Type: ChatPhoto

Example:

$chatPhoto = ['_' => 'chatPhoto', 'photo_small' => FileLocation, 'photo_big' => FileLocation, 'dc_id' => int];

Or, if you're into Lua:

chatPhoto={_='chatPhoto', photo_small=FileLocation, photo_big=FileLocation, dc_id=int}