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.

New 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:
status[source]

The member’s status in the chat, always 'restricted'.

Type:

str

user[source]

Information about the user.

Type:

telegram.User

is_member[source]

True, if the user is a member of the chat at the moment of the request.

Type:

bool

can_change_info[source]

True, if the user can change the chat title, photo and other settings.

Type:

bool

can_invite_users[source]

True, if the user can invite new users to the chat.

Type:

bool

can_pin_messages[source]

True, if the user is allowed to pin messages; groups and supergroups only.

Type:

bool

can_send_messages[source]

True, if the user is allowed to send text messages, contacts, locations and venues.

Type:

bool

can_send_polls[source]

True, if the user is allowed to send polls.

Type:

bool

can_send_other_messages[source]

True, if the user is allowed to send animations, games, stickers and use inline bots.

Type:

bool

can_add_web_page_previews[source]

True, if the user is allowed to add web page previews to their messages.

Type:

bool

can_manage_topics[source]

True, if the user is allowed to create forum topics.

New in version 20.0.

Type:

bool

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:

datetime.datetime

can_send_audios[source]

True, if the user is allowed to send audios.

New in version 20.1.

Type:

bool

can_send_documents[source]

True, if the user is allowed to send documents.

New in version 20.1.

Type:

bool

can_send_photos[source]

True, if the user is allowed to send photos.

New in version 20.1.

Type:

bool

can_send_videos[source]

True, if the user is allowed to send videos.

New in version 20.1.

Type:

bool

can_send_video_notes[source]

True, if the user is allowed to send video notes.

New in version 20.1.

Type:

bool

can_send_voice_notes[source]

True, if the user is allowed to send voice notes.

New in version 20.1.

Type:

bool