telegram.BotCommandScopeChatMember

class telegram.BotCommandScopeChatMember(chat_id, user_id, **_kwargs)

Bases: telegram.botcommandscope.BotCommandScope

Represents the scope of bot commands, covering a specific member of a group or supergroup chat.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their type, chat_id and user_id are equal.

New in version 13.7.

Parameters
  • chat_id (str | int) – Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)

  • user_id (int) – Unique identifier of the target user.

type

Scope type telegram.BotCommandScope.CHAT_MEMBER.

Type

str

chat_id

Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)

Type

str | int

user_id

Unique identifier of the target user.

Type

int