| Total Complexity | 7 | 
| Total Lines | 45 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 14 | class SetChatDraftMessage extends TdFunction | ||
| 15 | { | ||
| 16 | public const TYPE_NAME = 'setChatDraftMessage'; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * Chat identifier. | ||
| 20 | */ | ||
| 21 | protected int $chatId; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * New draft message; may be null. | ||
| 25 | */ | ||
| 26 | protected ?DraftMessage $draftMessage; | ||
| 27 | |||
| 28 | public function __construct(int $chatId, ?DraftMessage $draftMessage) | ||
| 32 | } | ||
| 33 | |||
| 34 | public static function fromArray(array $array): SetChatDraftMessage | ||
| 35 |     { | ||
| 36 | return new static( | ||
| 37 | $array['chat_id'], | ||
| 38 | (isset($array['draft_message']) ? TdSchemaRegistry::fromArray($array['draft_message']) : null), | ||
| 39 | ); | ||
| 40 | } | ||
| 41 | |||
| 42 | public function typeSerialize(): array | ||
| 43 |     { | ||
| 44 | return [ | ||
| 45 | '@type' => static::TYPE_NAME, | ||
| 46 | 'chat_id' => $this->chatId, | ||
| 47 | 'draft_message' => (isset($this->draftMessage) ? $this->draftMessage : null), | ||
| 48 | ]; | ||
| 49 | } | ||
| 50 | |||
| 51 | public function getChatId(): int | ||
| 52 |     { | ||
| 53 | return $this->chatId; | ||
| 54 | } | ||
| 55 | |||
| 56 | public function getDraftMessage(): ?DraftMessage | ||
| 59 | } | ||
| 60 | } | ||
| 61 |