telegramsjs
    Preparing search index...

    Interface KeyboardButtonRequestChat

    This object defines the criteria used to request a suitable chat. Information about the selected chat will be shared with the bot when the corresponding button is pressed. The bot will be granted requested rights in the chat if appropriate

    interface KeyboardButtonRequestChat {
        bot_administrator_rights?: ChatAdministratorRights;
        bot_is_member?: boolean;
        chat_has_username?: boolean;
        chat_is_channel: boolean;
        chat_is_created?: boolean;
        chat_is_forum?: boolean;
        request_id: number;
        request_photo?: boolean;
        request_title?: boolean;
        request_username?: boolean;
        user_administrator_rights?: ChatAdministratorRights;
    }
    Index

    Properties

    bot_administrator_rights?: ChatAdministratorRights

    An object listing the required administrator rights of the bot in the chat. The rights must be a subset of user_administrator_rights. If not specified, no additional restrictions are applied.

    bot_is_member?: boolean

    Pass True to request a chat with the bot as a member. Otherwise, no additional restrictions are applied.

    chat_has_username?: boolean

    Pass True to request a supergroup or a channel with a username, pass False to request a chat without a username. If not specified, no additional restrictions are applied.

    chat_is_channel: boolean

    Pass True to request a channel chat, pass False to request a group or a supergroup chat.

    chat_is_created?: boolean

    Pass True to request a chat owned by the user. Otherwise, no additional restrictions are applied.

    chat_is_forum?: boolean

    Pass True to request a forum supergroup, pass False to request a non-forum chat. If not specified, no additional restrictions are applied.

    request_id: number

    Signed 32-bit identifier of the request, which will be received back in the ChatShared object. Must be unique within the message

    request_photo?: boolean

    Pass True to request the chat's photo

    request_title?: boolean

    Pass True to request the chat's title

    request_username?: boolean

    Pass True to request the chat's username

    user_administrator_rights?: ChatAdministratorRights

    An object listing the required administrator rights of the user in the chat. The rights must be a superset of bot_administrator_rights. If not specified, no additional restrictions are applied.