You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Layers/Generated.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2305,7 +2305,7 @@ public function sendGift(
2305
2305
}
2306
2306
2307
2307
/**
2308
-
* Verifies a user on behalf of the organization which is represented by the bot. Returns <em>True</em> on success.
2308
+
* Verifies a user <a href="https://telegram.org/verify#third-party-verification">on behalf of the organization</a> which is represented by the bot. Returns <em>True</em> on success.
2309
2309
*
2310
2310
* @param int $user_id Unique identifier of the target user
2311
2311
* @param string $custom_description Custom description for the verification; 0-70 characters. Must be empty if the organization isn't allowed to provide a custom verification description.
@@ -2318,7 +2318,7 @@ public function verifyUser(int $user_id, ?string $custom_description = null): bo
2318
2318
}
2319
2319
2320
2320
/**
2321
-
* Verifies a chat on behalf of the organization which is represented by the bot. Returns <em>True</em> on success.
2321
+
* Verifies a chat <a href="https://telegram.org/verify#third-party-verification">on behalf of the organization</a> which is represented by the bot. Returns <em>True</em> on success.
2322
2322
*
2323
2323
* @param int|string $chat_id Unique identifier for the target chat or username of the target channel (in the format @channelusername)
2324
2324
* @param string $custom_description Custom description for the verification; 0-70 characters. Must be empty if the organization isn't allowed to provide a custom verification description.
@@ -2331,7 +2331,7 @@ public function verifyChat(int|string $chat_id, ?string $custom_description = nu
2331
2331
}
2332
2332
2333
2333
/**
2334
-
* Removes verification from a user who is currently verified on behalf of the organization represented by the bot. Returns <em>True</em> on success.
2334
+
* Removes verification from a user who is currently verified <a href="https://telegram.org/verify#third-party-verification">on behalf of the organization</a> represented by the bot. Returns <em>True</em> on success.
2335
2335
*
2336
2336
* @param int $user_id Unique identifier of the target user
2337
2337
*
@@ -2343,7 +2343,7 @@ public function removeUserVerification(int $user_id): bool
2343
2343
}
2344
2344
2345
2345
/**
2346
-
* Removes verification from a chat that is currently verified on behalf of the organization represented by the bot. Returns <em>True</em> on success.
2346
+
* Removes verification from a chat that is currently verified <a href="https://telegram.org/verify#third-party-verification">on behalf of the organization</a> represented by the bot. Returns <em>True</em> on success.
2347
2347
*
2348
2348
* @param int|string $chat_id Unique identifier for the target chat or username of the target channel (in the format @channelusername)
2349
2349
*
@@ -2543,7 +2543,7 @@ public function createInvoiceLink(
2543
2543
* @param string $shipping_query_id Unique identifier for the query to be answered
2544
2544
* @param bool $ok Pass <em>True</em> if delivery to the specified address is possible and <em>False</em> if there are any problems (for example, if delivery to the specified address is not possible)
2545
2545
* @param ShippingOption[] $shipping_options Required if <em>ok</em> is <em>True</em>. A JSON-serialized array of available shipping options.
2546
-
* @param string $error_message Required if <em>ok</em> is <em>False</em>. Error message in human readable form that explains why it is impossible to complete the order (e.g. "Sorry, delivery to your desired address is unavailable'). Telegram will display this message to the user.
2546
+
* @param string $error_message Required if <em>ok</em> is <em>False</em>. Error message in human readable form that explains why it is impossible to complete the order (e.g. “Sorry, delivery to your desired address is unavailable”). Telegram will display this message to the user.
0 commit comments