We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3012272 commit f29344dCopy full SHA for f29344d
src/Models/Message.php
@@ -17,6 +17,9 @@
17
* @param string|null $url Message public URL. Can be null for dialogs or non-public chats/channels.
18
* @param LinkedMessage|null $link Forwarded or replied message.
19
* @param MessageStat|null $stat Message statistics. Available only for channels.
20
+ * @param int|null $chatId
21
+ * @param int|null $recipientId
22
+ * @param string|null $messageId
23
*/
24
public function __construct(
25
public int $timestamp,
@@ -26,6 +29,9 @@ public function __construct(
26
29
public ?string $url,
27
30
public ?LinkedMessage $link,
28
31
public ?MessageStat $stat,
32
+ public ?int $chatId,
33
+ public ?int $recipientId,
34
+ public ?string $messageId,
35
) {
36
}
37
0 commit comments