ToggleChatIsPinned::getChatId()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
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 PHPTdGram\Schema;
10
11
/**
12
 * Changes the pinned state of a chat. You can pin up to GetOption("pinned_chat_count_max")/GetOption("pinned_archived_chat_count_max") non-secret chats and the same number of secret chats in the main/archive chat list.
13
 */
14
class ToggleChatIsPinned extends TdFunction
15
{
16
    public const TYPE_NAME = 'toggleChatIsPinned';
17
18
    /**
19
     * Chat identifier.
20
     */
21
    protected int $chatId;
22
23
    /**
24
     * New value of is_pinned.
25
     */
26
    protected bool $isPinned;
27
28
    public function __construct(int $chatId, bool $isPinned)
29
    {
30
        $this->chatId   = $chatId;
31
        $this->isPinned = $isPinned;
32
    }
33
34
    public static function fromArray(array $array): ToggleChatIsPinned
35
    {
36
        return new static(
37
            $array['chat_id'],
38
            $array['is_pinned'],
39
        );
40
    }
41
42
    public function typeSerialize(): array
43
    {
44
        return [
45
            '@type'     => static::TYPE_NAME,
46
            'chat_id'   => $this->chatId,
47
            'is_pinned' => $this->isPinned,
48
        ];
49
    }
50
51
    public function getChatId(): int
52
    {
53
        return $this->chatId;
54
    }
55
56
    public function getIsPinned(): bool
57
    {
58
        return $this->isPinned;
59
    }
60
}
61