BusinessConnection¶
- class telegram.BusinessConnection(id, user, user_chat_id, date, can_reply, is_enabled, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObjectDescribes the connection of the bot with a business account.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal if their
id,user,user_chat_id,date,can_reply, andis_enabledare equal.Available In
Returned In
Added in version 21.1.
- Parameters:
id (
str) – Unique identifier of the business connection.user (
telegram.User) – Business account user that created the business connection.user_chat_id (
int) – Identifier of a private chat with the user who created the business connection.date (
datetime.datetime) – Date the connection was established in Unix time.can_reply (
bool) – True, if the bot can act on behalf of the business account in chats that were active in the last 24 hours.is_enabled (
bool) – True, if the connection is active.
- user_chat_id[source]¶
Identifier of a private chat with the user who created the business connection.
- Type:
int
- can_reply[source]¶
True, if the bot can act on behalf of the business account in chats that were active in the last 24 hours.
- Type:
bool