mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-28 02:57:27 +00:00
Added getChats & getChatByLink & deleteChat & sendAction
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?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';
|
||||
}
|
||||
Reference in New Issue
Block a user