Файл: upload/core/vendor/longman/telegram-bot/src/Entities/SwitchInlineQueryChosenChat.php
Строк: 59
<?php
namespace LongmanTelegramBotEntities;
/**
* Class SwitchInlineQueryChosenChat
*
* This entity represents an inline button that switches the current user to inline mode in a chosen chat, with an optional default inline query.
*
* @link https://core.telegram.org/bots/api#switchinlinequerychosenchat
*
* @method string getQuery() Optional. The default inline query to be inserted in the input field. If left empty, only the bot's username will be inserted
* @method bool getAllowUserChats() Optional. True, if private chats with users can be chosen
* @method bool getAllowBotChats() Optional. True, if private chats with bots can be chosen
* @method bool getAllowGroupChats() Optional. True, if group and supergroup chats can be chosen
* @method bool getAllowChannelChats() Optional. True, if channel chats can be chosen
*/
class SwitchInlineQueryChosenChat extends Entity
{
}