Файл: upload/core/vendor/longman/telegram-bot/src/ChatAction.php
Строк: 45
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LongmanTelegramBot;
class ChatAction
{
/**
* Typing chat action
*/
public const TYPING = 'typing';
/**
* Upload Photo chat action
*/
public const UPLOAD_PHOTO = 'upload_photo';
/**
* Record Video chat action
*/
public const RECORD_VIDEO = 'record_video';
/**
* Upload Video chat action
*/
public const UPLOAD_VIDEO = 'upload_video';
/**
* Record Voice chat action
*/
public const RECORD_VOICE = 'record_voice';
/**
* Upload Voice chat action
*/
public const UPLOAD_VOICE = 'upload_voice';
/**
* Upload Document chat action
*/
public const UPLOAD_DOCUMENT = 'upload_document';
/**
* Choose Sticker chat action
*/
public const CHOOSE_STICKER = 'choose_sticker';
/**
* Find Location chat action
*/
public const FIND_LOCATION = 'find_location';
/**
* Record Video Note chat action
*/
public const RECORD_VIDEO_NOTE = 'record_video_note';
/**
* Upload Video note chat action
*/
public const UPLOAD_VIDEO_NOTE = 'upload_video_note';
}