SearchChatRecentLocationMessages   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 49
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 15
dl 0
loc 49
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A fromArray() 0 5 1
A __construct() 0 4 1
A getChatId() 0 3 1
A getLimit() 0 3 1
A typeSerialize() 0 6 1
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
 * Returns information about the recent locations of chat members that were sent to the chat. Returns up to 1 location message per user.
13
 */
14
class SearchChatRecentLocationMessages extends TdFunction
15
{
16
    public const TYPE_NAME = 'searchChatRecentLocationMessages';
17
18
    /**
19
     * Chat identifier.
20
     *
21
     * @var int
22
     */
23
    protected int $chatId;
24
25
    /**
26
     * The maximum number of messages to be returned.
27
     *
28
     * @var int
29
     */
30
    protected int $limit;
31
32
    public function __construct(int $chatId, int $limit)
33
    {
34
        $this->chatId = $chatId;
35
        $this->limit  = $limit;
36
    }
37
38
    public static function fromArray(array $array): SearchChatRecentLocationMessages
39
    {
40
        return new static(
41
            $array['chat_id'],
42
            $array['limit'],
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'   => static::TYPE_NAME,
50
            'chat_id' => $this->chatId,
51
            'limit'   => $this->limit,
52
        ];
53
    }
54
55
    public function getChatId(): int
56
    {
57
        return $this->chatId;
58
    }
59
60
    public function getLimit(): int
61
    {
62
        return $this->limit;
63
    }
64
}
65