ChatMemberRestricted¶
- class telegram.ChatMemberRestricted(user, is_member, can_change_info, can_invite_users, can_pin_messages, can_send_messages, can_send_polls, can_send_other_messages, can_add_web_page_previews, can_manage_topics, until_date, can_send_audios, can_send_documents, can_send_photos, can_send_videos, can_send_video_notes, can_send_voice_notes, *, api_kwargs=None)[source]¶
Bases:
telegram.ChatMember
Represents a chat member that is under certain restrictions in the chat. Supergroups only.
Returned In
Added in version 13.7.
Changed in version 20.0: All arguments were made positional and their order was changed. The argument can_manage_topics was added.
Changed in version 20.5: Removed deprecated argument and attribute
can_send_media_messages
.- Parameters:
user (
telegram.User
) – Information about the user.is_member (
bool
) –True
, if the user is a member of the chat at the moment of the request.can_change_info (
bool
) –True
, if the user can change the chat title, photo and other settings.can_invite_users (
bool
) –True
, if the user can invite new users to the chat.can_pin_messages (
bool
) –True
, if the user is allowed to pin messages; groups and supergroups only.can_send_messages (
bool
) –True
, if the user is allowed to send text messages, contacts, invoices, locations and venues.can_send_polls (
bool
) –True
, if the user is allowed to send polls.can_send_other_messages (
bool
) –True
, if the user is allowed to send animations, games, stickers and use inline bots.can_add_web_page_previews (
bool
) –True
, if the user is allowed to add web page previews to their messages.True
, if the user is allowed to create forum topics.Added in version 20.0.
until_date (
datetime.datetime
) –Date when restrictions will be lifted for this user.
Changed in version 20.3: The default timezone of the bot is used for localization, which is UTC unless
telegram.ext.Defaults.tzinfo
is used.can_send_audios (
bool
) –True
, if the user is allowed to send audios.Added in version 20.1.
True
, if the user is allowed to send documents.Added in version 20.1.
can_send_photos (
bool
) –True
, if the user is allowed to send photos.Added in version 20.1.
can_send_videos (
bool
) –True
, if the user is allowed to send videos.Added in version 20.1.
True
, if the user is allowed to send video notes.Added in version 20.1.
True
, if the user is allowed to send voice notes.Added in version 20.1.
- status[source]¶
The member’s status in the chat, always
'restricted'
.- Type:
- can_change_info[source]¶
True
, if the user can change the chat title, photo and other settings.- Type:
- can_pin_messages[source]¶
True
, if the user is allowed to pin messages; groups and supergroups only.- Type:
- can_send_messages[source]¶
True
, if the user is allowed to send text messages, contacts, locations and venues.- Type:
- can_send_other_messages[source]¶
True
, if the user is allowed to send animations, games, stickers and use inline bots.- Type:
- can_add_web_page_previews[source]¶
True
, if the user is allowed to add web page previews to their messages.- Type:
- can_manage_topics[source]¶
True
, if the user is allowed to create forum topics.Added in version 20.0.
- Type:
- until_date[source]¶
Date when restrictions will be lifted for this user.
Changed in version 20.3: The default timezone of the bot is used for localization, which is UTC unless
telegram.ext.Defaults.tzinfo
is used.- Type:
- can_send_documents[source]¶
True
, if the user is allowed to send documents.Added in version 20.1.
- Type: