diff --git a/src/Methode.php b/src/Methode.php index a3ab170..3f6478d 100644 --- a/src/Methode.php +++ b/src/Methode.php @@ -704,9 +704,29 @@ public function getAvailableGifts(): bool|array|string return $this->endpoint('getAvailableGifts', get_defined_vars()); } - public function sendGift($user_id, $gift_id, $text = null, $text_parse_mode = null, $text_entities = null): bool|array|string + public function sendGift($user_id, $gift_id, $pay_for_upgrade = null, $text = null, $text_parse_mode = null, $text_entities = null): bool|array|string { return $this->endpoint('sendGift', get_defined_vars()); } + + public function verifyUser($user_id, $custom_description = null): bool|array|string + { + return $this->endpoint('verifyUser', get_defined_vars()); + } + + public function verifyChat($chat_id, $custom_description = null): bool|array|string + { + return $this->endpoint('verifyChat', get_defined_vars()); + } + + public function removeUserVerification($user_id): bool|array|string + { + return $this->endpoint('removeUserVerification', get_defined_vars()); + } + + public function verifremoveChatVerificationyUser($chat_id): bool|array|string + { + return $this->endpoint('removeChatVerification', get_defined_vars()); + } } diff --git a/src/Updates/Gift.php b/src/Updates/Gift.php index a221941..0c6628c 100644 --- a/src/Updates/Gift.php +++ b/src/Updates/Gift.php @@ -6,6 +6,7 @@ * @property int $id * @property Sticker $sticker * @property int $star_count + * @property int $upgrade_star_count * @property int $total_count * @property int $remaining_count diff --git a/src/Updates/InlineQueryResultArticle.php b/src/Updates/InlineQueryResultArticle.php index ecf8623..2b8b4ee 100644 --- a/src/Updates/InlineQueryResultArticle.php +++ b/src/Updates/InlineQueryResultArticle.php @@ -9,7 +9,6 @@ * @property InputMessageContent $input_message_content * @property InlineKeyboardMarkup $reply_markup * @property string $url - * @property bool $hide_url * @property string $description * @property string $thumbnail_url * @property int $thumbnail_width