mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-22 13:33:47 +00:00
19 lines
439 B
PHP
19 lines
439 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Models\Attachments\Payloads;
|
|
|
|
use BushlanovDev\MaxMessengerBot\Models\Attachments\Buttons\Inline\AbstractInlineButton;
|
|
|
|
final readonly class InlineKeyboardAttachmentRequestPayload extends AbstractAttachmentRequestPayload
|
|
{
|
|
/**
|
|
* @param AbstractInlineButton[][] $buttons
|
|
*/
|
|
public function __construct(
|
|
public array $buttons,
|
|
) {
|
|
}
|
|
}
|