VideoChatScheduled

class telegram.VideoChatScheduled(start_date, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

This object represents a service message about a video chat scheduled in the chat.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their start_date are equal.

Changed in version 20.0: This class was renamed from VoiceChatScheduled in accordance to Bot API 6.0.

Parameters:

start_date (datetime.datetime) –

Point in time (Unix timestamp) when the video chat is supposed to be started by a chat administrator

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.

start_date[source]

Point in time (Unix timestamp) when the video chat is supposed to be started by a chat administrator

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

classmethod de_json(data, bot)[source]

See telegram.TelegramObject.de_json().