Inherits Object.
Contains basic information about the photo of a chat.
Public Fields | |
object_ptr< file > | small_ |
A small (160x160) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed. | |
object_ptr< file > | big_ |
A big (640x640) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed. | |
object_ptr< minithumbnail > | minithumbnail_ |
Chat photo minithumbnail; may be null. | |
bool | has_animation_ |
True, if the photo has animated variant. | |
bool | is_personal_ |
True, if the photo is visible only for the current user. | |
Public Instance Methods | |
chatPhotoInfo () | |
chatPhotoInfo (object_ptr< file > &&small_, object_ptr< file > &&big_, object_ptr< minithumbnail > &&minithumbnail_, bool has_animation_, bool is_personal_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 281195686 |
Identifier uniquely determining a type of the object. | |
chatPhotoInfo | ( | ) |
Contains basic information about the photo of a chat.
chatPhotoInfo | ( | object_ptr< file > && | small_, |
object_ptr< file > && | big_, | ||
object_ptr< minithumbnail > && | minithumbnail_, | ||
bool | has_animation_, | ||
bool | is_personal_ | ||
) |
Contains basic information about the photo of a chat.
[in] | small_ | A small (160x160) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed. |
[in] | big_ | A big (640x640) chat photo variant in JPEG format. The file can be downloaded only before the photo is changed. |
[in] | minithumbnail_ | Chat photo minithumbnail; may be null. |
[in] | has_animation_ | True, if the photo has animated variant. |
[in] | is_personal_ | True, if the photo is visible only for the current user. |
|
finalvirtual |