mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-21 13:43:01 +00:00
17 lines
354 B
PHP
17 lines
354 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Enums;
|
|
|
|
enum InlineButtonType: string
|
|
{
|
|
case Callback = 'callback';
|
|
case Link = 'link';
|
|
case RequestGeoLocation = 'request_geo_location';
|
|
case RequestContact = 'request_contact';
|
|
case OpenApp = 'open_app';
|
|
case Message = 'message';
|
|
case Chat = 'chat';
|
|
}
|