| Total Complexity | 7 |
| Total Lines | 49 |
| 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 | * @var int |
||
| 22 | */ |
||
| 23 | protected int $chatId; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * New draft message; may be null. |
||
| 27 | * |
||
| 28 | * @var DraftMessage|null |
||
| 29 | */ |
||
| 30 | protected ?DraftMessage $draftMessage; |
||
| 31 | |||
| 32 | public function __construct(int $chatId, ?DraftMessage $draftMessage) |
||
| 33 | { |
||
| 34 | $this->chatId = $chatId; |
||
| 35 | $this->draftMessage = $draftMessage; |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): SetChatDraftMessage |
||
| 39 | { |
||
| 40 | return new static( |
||
| 41 | $array['chat_id'], |
||
| 42 | (isset($array['draft_message']) ? TdSchemaRegistry::fromArray($array['draft_message']) : null), |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | 'chat_id' => $this->chatId, |
||
| 51 | 'draft_message' => (isset($this->draftMessage) ? $this->draftMessage : null), |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getChatId(): int |
||
| 56 | { |
||
| 57 | return $this->chatId; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getDraftMessage(): ?DraftMessage |
||
| 63 | } |
||
| 64 | } |
||
| 65 |