Source code for aiogram.types.keyboard_button_request_chat

from __future__ import annotations

from typing import TYPE_CHECKING, Any, Optional

from aiogram.types import TelegramObject

if TYPE_CHECKING:
    from .chat_administrator_rights import ChatAdministratorRights


[docs]class KeyboardButtonRequestChat(TelegramObject): """ This object defines the criteria used to request a suitable chat. The identifier of the selected chat will be shared with the bot when the corresponding button is pressed. `More about requesting chats ยป <https://core.telegram.org/bots/features#chat-and-user-selection>`_ Source: https://core.telegram.org/bots/api#keyboardbuttonrequestchat """ request_id: int """Signed 32-bit identifier of the request, which will be received back in the :class:`aiogram.types.chat_shared.ChatShared` object. Must be unique within the message""" chat_is_channel: bool """Pass :code:`True` to request a channel chat, pass :code:`False` to request a group or a supergroup chat.""" chat_is_forum: Optional[bool] = None """*Optional*. Pass :code:`True` to request a forum supergroup, pass :code:`False` to request a non-forum chat. If not specified, no additional restrictions are applied.""" chat_has_username: Optional[bool] = None """*Optional*. Pass :code:`True` to request a supergroup or a channel with a username, pass :code:`False` to request a chat without a username. If not specified, no additional restrictions are applied.""" chat_is_created: Optional[bool] = None """*Optional*. Pass :code:`True` to request a chat owned by the user. Otherwise, no additional restrictions are applied.""" user_administrator_rights: Optional[ChatAdministratorRights] = None """*Optional*. A JSON-serialized 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.""" bot_administrator_rights: Optional[ChatAdministratorRights] = None """*Optional*. A JSON-serialized 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: Optional[bool] = None """*Optional*. Pass :code:`True` to request a chat with the bot as a member. Otherwise, no additional restrictions are applied.""" if TYPE_CHECKING: # DO NOT EDIT MANUALLY!!! # This section was auto-generated via `butcher` def __init__( __pydantic__self__, *, request_id: int, chat_is_channel: bool, chat_is_forum: Optional[bool] = None, chat_has_username: Optional[bool] = None, chat_is_created: Optional[bool] = None, user_administrator_rights: Optional[ChatAdministratorRights] = None, bot_administrator_rights: Optional[ChatAdministratorRights] = None, bot_is_member: Optional[bool] = None, **__pydantic_kwargs: Any, ) -> None: # DO NOT EDIT MANUALLY!!! # This method was auto-generated via `butcher` # Is needed only for type checking and IDE support without any additional plugins super().__init__( request_id=request_id, chat_is_channel=chat_is_channel, chat_is_forum=chat_is_forum, chat_has_username=chat_has_username, chat_is_created=chat_is_created, user_administrator_rights=user_administrator_rights, bot_administrator_rights=bot_administrator_rights, bot_is_member=bot_is_member, **__pydantic_kwargs, )