EditInlineMessageReplyMarkup::typeSerialize()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This phpFile is auto-generated.
5
 */
6
7
declare(strict_types=1);
8
9
namespace AurimasNiekis\TdLibSchema;
10
11
/**
12
 * Edits the reply markup of an inline message sent via a bot; for bots only.
13
 */
14
class EditInlineMessageReplyMarkup extends TdFunction
15
{
16
    public const TYPE_NAME = 'editInlineMessageReplyMarkup';
17
18
    /**
19
     * Inline message identifier.
20
     *
21
     * @var string
22
     */
23
    protected string $inlineMessageId;
24
25
    /**
26
     * The new message reply markup.
27
     *
28
     * @var ReplyMarkup
29
     */
30
    protected ReplyMarkup $replyMarkup;
31
32
    public function __construct(string $inlineMessageId, ReplyMarkup $replyMarkup)
33
    {
34
        $this->inlineMessageId = $inlineMessageId;
35
        $this->replyMarkup     = $replyMarkup;
36
    }
37
38
    public static function fromArray(array $array): EditInlineMessageReplyMarkup
39
    {
40
        return new static(
41
            $array['inline_message_id'],
42
            TdSchemaRegistry::fromArray($array['reply_markup']),
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'             => static::TYPE_NAME,
50
            'inline_message_id' => $this->inlineMessageId,
51
            'reply_markup'      => $this->replyMarkup->typeSerialize(),
52
        ];
53
    }
54
55
    public function getInlineMessageId(): string
56
    {
57
        return $this->inlineMessageId;
58
    }
59
60
    public function getReplyMarkup(): ReplyMarkup
61
    {
62
        return $this->replyMarkup;
63
    }
64
}
65