Add method to unpin chat messages

This commit is contained in:
netkas 2024-11-06 17:11:45 -05:00
parent 2aca204f16
commit 94d8922a49
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,40 @@
<?php
namespace TgBotLib\Methods;
use TgBotLib\Abstracts\Method;
use TgBotLib\Bot;
use TgBotLib\Enums\Methods;
class UnpinChatMessage extends Method
{
/**
* @inheritDoc
*/
public static function execute(Bot $bot, array $parameters = []): bool
{
return (bool)self::executeCurl(self::buildPost($bot, Methods::UNPIN_CHAT_MESSAGE->value, $parameters));
}
/**
* @inheritDoc
*/
public static function getRequiredParameters(): ?array
{
return [
'chat_id'
];
}
/**
* @inheritDoc
*/
public static function getOptionalParameters(): ?array
{
return [
'business_connection_id',
'message_id'
];
}
}