mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-20 19:42:59 +00:00
13 lines
230 B
PHP
13 lines
230 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Enums;
|
|
|
|
enum ReplyButtonType: string
|
|
{
|
|
case Message = 'message';
|
|
case UserGeoLocation = 'user_geo_location';
|
|
case UserContact = 'user_contact';
|
|
}
|