VideoChatParticipantsInvited¶
- class telegram.VideoChatParticipantsInvited(users, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObject
This object represents a service message about new members invited to a video chat.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
users
are equal.Available In
Added in version 13.4.
Changed in version 20.0: This class was renamed from
VoiceChatParticipantsInvited
in accordance to Bot API 6.0.- Parameters:
users (Sequence[
telegram.User
]) –New members that were invited to the video chat.
Changed in version 20.0: Accepts any
collections.abc.Sequence
as input instead of just a list. The input is converted to a tuple.
- users[source]¶
New members that were invited to the video chat.
Changed in version 20.0: This attribute is now an immutable tuple.
- Type:
Tuple[
telegram.User
]