mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-23 00:02:15 +00:00
19 lines
431 B
PHP
19 lines
431 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Enums;
|
|
|
|
/**
|
|
* Represents the different actions a bot can send to a chat to indicate its status.
|
|
*/
|
|
enum SenderAction: string
|
|
{
|
|
case TypingOn = 'typing_on';
|
|
case SendingPhoto = 'sending_photo';
|
|
case SendingVideo = 'sending_video';
|
|
case SendingAudio = 'sending_audio';
|
|
case SendingFile = 'sending_file';
|
|
case MarkSeen = 'mark_seen';
|
|
}
|