Files
max-bot-api-client-php/src/Enums/AttachmentType.php
T
2026-03-21 09:44:40 +03:00

19 lines
377 B
PHP

<?php
declare(strict_types=1);
namespace BushlanovDev\MaxMessengerBot\Enums;
enum AttachmentType: string
{
case Image = 'image';
case Video = 'video';
case Audio = 'audio';
case File = 'file';
case Sticker = 'sticker';
case Contact = 'contact';
case InlineKeyboard = 'inline_keyboard';
case Location = 'location';
case Share = 'share';
}