telegramsjs
    Preparing search index...

    Interface BotCommandScopeChatMember

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

    interface BotCommandScopeChatMember {
        chat_id: string | number;
        type: "chat_member";
        user_id: number;
    }
    Index

    Properties

    Properties

    chat_id: string | number

    Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername). Channel direct messages chats and channel chats aren't supported.

    type: "chat_member"

    The scope type, must be "chat_member".

    user_id: number

    The unique identifier of the target user.