Added getChats & getChatByLink & deleteChat & sendAction

This commit is contained in:
Alex
2025-07-27 09:13:55 +03:00
parent f195f9868f
commit 67ce2958a6
8 changed files with 419 additions and 4 deletions
+18
View File
@@ -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';
}