Interface BotCommandScopeChatMember

A scope covering a member of a chat. Subtype of BotCommandScope.

interface BotCommandScopeChatMember {
    @type: "botCommandScopeChatMember";
    chat_id: number;
    user_id: number;
}

Properties

Properties

@type: "botCommandScopeChatMember"
chat_id: number

Chat identifier.

user_id: number

User identifier.