mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-18 07:15:43 +00:00
19 lines
377 B
PHP
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';
|
|
}
|