Add CreateChatSubscriptionInviteLink method
This commit is contained in:
parent
646c77c4ba
commit
9817608eb7
2 changed files with 47 additions and 0 deletions
44
src/TgBotLib/Methods/CreateChatSubscriptionInviteLink.php
Normal file
44
src/TgBotLib/Methods/CreateChatSubscriptionInviteLink.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
namespace TgBotLib\Methods;
|
||||
|
||||
use TgBotLib\Abstracts\Method;
|
||||
use TgBotLib\Bot;
|
||||
use TgBotLib\Enums\Methods;
|
||||
use TgBotLib\Objects\ChatInviteLink;
|
||||
|
||||
class CreateChatSubscriptionInviteLink extends Method
|
||||
{
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public static function execute(Bot $bot, array $parameters = []): ChatInviteLink
|
||||
{
|
||||
return ChatInviteLink::fromArray(
|
||||
self::executeCurl(self::buildPost($bot, Methods::CREATE_CHAT_SUBSCRIPTION_INVITE_LINK->value, $parameters))
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public static function getRequiredParameters(): ?array
|
||||
{
|
||||
return [
|
||||
'chat_id',
|
||||
'subscription_period',
|
||||
'subscription_price'
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public static function getOptionalParameters(): ?array
|
||||
{
|
||||
return [
|
||||
'name'
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue