mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-21 08:22:06 +00:00
19 lines
415 B
PHP
19 lines
415 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Enums;
|
|
|
|
enum MarkupType: string
|
|
{
|
|
case Strong = 'strong';
|
|
case Emphasized = 'emphasized';
|
|
case Monospaced = 'monospaced';
|
|
case Link = 'link';
|
|
case Strikethrough = 'strikethrough';
|
|
case Underline = 'underline';
|
|
case UserMention = 'user_mention';
|
|
case Heading = 'heading';
|
|
case Highlighted = 'highlighted';
|
|
}
|