mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-21 19:43:50 +00:00
19 lines
468 B
PHP
19 lines
468 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Models\Attachments\Payloads;
|
|
|
|
/**
|
|
* Payload for attachments that are uploaded to the server first (video, audio, file).
|
|
*/
|
|
final readonly class UploadedInfoAttachmentRequestPayload extends AbstractAttachmentRequestPayload
|
|
{
|
|
/**
|
|
* @param string $token The unique token received after a successful file upload.
|
|
*/
|
|
public function __construct(public string $token)
|
|
{
|
|
}
|
|
}
|