Interface ChatPhotoInfo

Contains basic information about the photo of a chat.

interface ChatPhotoInfo {
    @type: "chatPhotoInfo";
    big: File;
    has_animation?: boolean;
    is_personal?: boolean;
    minithumbnail: Minithumbnail;
    small: File;
}

Properties

@type: "chatPhotoInfo"
big: File

A big (640x640) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed.

has_animation?: boolean

True, if the photo has animated variant.

is_personal?: boolean

True, if the photo is visible only for the current user.

minithumbnail: Minithumbnail

Chat photo minithumbnail; may be null.

small: File

A small (160x160) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed.