mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-19 12:03:49 +00:00
22 lines
572 B
PHP
22 lines
572 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Models;
|
|
|
|
use BushlanovDev\MaxMessengerBot\Models\Attachments\Payloads\PhotoAttachmentRequestPayload;
|
|
|
|
/**
|
|
* Represents the data to patch for a chat. Instantiate with named arguments.
|
|
*
|
|
* Example: new ChatPatch(title: 'New Chat Title');
|
|
*
|
|
* @property-read PhotoAttachmentRequestPayload|null $icon
|
|
* @property-read string|null $title
|
|
* @property-read string|null $pin Message ID to be pinned.
|
|
* @property-read bool|null $notify
|
|
*/
|
|
final readonly class ChatPatch extends AbstractPatchModel
|
|
{
|
|
}
|