| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class GetMessageLink extends TdFunction |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'getMessageLink'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Identifier of the chat to which the message belongs. |
||
| 20 | */ |
||
| 21 | protected int $chatId; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Identifier of the message. |
||
| 25 | */ |
||
| 26 | protected int $messageId; |
||
| 27 | |||
| 28 | public function __construct(int $chatId, int $messageId) |
||
| 32 | } |
||
| 33 | |||
| 34 | public static function fromArray(array $array): GetMessageLink |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | |||
| 42 | public function typeSerialize(): array |
||
| 43 | { |
||
| 44 | return [ |
||
| 45 | '@type' => static::TYPE_NAME, |
||
| 46 | 'chat_id' => $this->chatId, |
||
| 47 | 'message_id' => $this->messageId, |
||
| 48 | ]; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getChatId(): int |
||
| 54 | } |
||
| 55 | |||
| 56 | public function getMessageId(): int |
||
| 61 |