View Source ExTDLib.Object.UserFullInfo (ExTDLib v0.0.4)
Contains full information about a user.
| Name | Type | Description |
|---|---|---|
| personal_photo | chatPhoto | User profile photo set by the current user for the contact; may be null. If null and user.profile_photo is null, then the photo is empty; otherwise, it is unknown. If non-null, then it is the same photo as in user.profile_photo and chat.photo. This photo isn't returned in the list of user photos. |
| photo | chatPhoto | User profile photo; may be null. If null and user.profile_photo is null, then the photo is empty; otherwise, it is unknown. If non-null and personal_photo is null, then it is the same photo as in user.profile_photo and chat.photo. |
| public_photo | chatPhoto | User profile photo visible if the main photo is hidden by privacy settings; may be null. If null and user.profile_photo is null, then the photo is empty; otherwise, it is unknown. If non-null and both photo and personal_photo are null, then it is the same photo as in user.profile_photo and chat.photo. This photo isn't returned in the list of user photos. |
| block_list | BlockList | Block list to which the user is added; may be null if none. |
| can_be_called | bool | True, if the user can be called. |
| supports_video_calls | bool | True, if a video call can be created with the user. |
| has_private_calls | bool | True, if the user can't be called due to their privacy settings. |
| has_private_forwards | bool | True, if the user can't be linked in forwarded messages due to their privacy settings. |
| has_restricted_voice_and_video_note_messages | bool | True, if voice and video notes can't be sent or forwarded to the user. |
| has_pinned_stories | bool | True, if the user has pinned stories. |
| need_phone_number_privacy_exception | bool | True, if the current user needs to explicitly allow to share their phone number with the user when the method addContact is used. |
| set_chat_background | bool | True, if the user set chat background for both chat users and it wasn't reverted yet. |
| bio | formattedText | A short user bio; may be null for bots. |
| premium_gift_options | premiumPaymentOption | The list of available options for gifting Telegram Premium to the user. |
| group_in_common_count | number | Number of group chats where both the other user and the current user are a member; 0 for the current user. |
| bot_info | botInfo | For bots, information about the bot; may be null if the user isn't a bot. |
More details on telegram's documentation.