Files
max-bot-api-client-php/src/Models/BotCommand.php
T
2025-07-11 20:33:26 +03:00

22 lines
451 B
PHP

<?php
declare(strict_types=1);
namespace BushlanovDev\MaxMessengerBot\Models;
/**
* Command supported by the bot.
*/
final readonly class BotCommand extends AbstractModel
{
/**
* @param string $name Command name (1 to 64 characters)
* @param string|null $description Command description (1 to 128 characters)
*/
public function __construct(
public string $name,
public ?string $description,
) {
}
}