StickerSets::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 4
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
 * Represents a list of sticker sets.
13
 */
14
class StickerSets extends TdObject
15
{
16
    public const TYPE_NAME = 'stickerSets';
17
18
    /**
19
     * Approximate total number of sticker sets found.
20
     *
21
     * @var int
22
     */
23
    protected int $totalCount;
24
25
    /**
26
     * List of sticker sets.
27
     *
28
     * @var StickerSetInfo[]
29
     */
30
    protected array $sets;
31
32
    public function __construct(int $totalCount, array $sets)
33
    {
34
        $this->totalCount = $totalCount;
35
        $this->sets       = $sets;
36
    }
37
38
    public static function fromArray(array $array): StickerSets
39
    {
40
        return new static(
41
            $array['total_count'],
42
            array_map(fn ($x) => TdSchemaRegistry::fromArray($x), $array['sets']),
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'           => static::TYPE_NAME,
50
            'total_count'     => $this->totalCount,
51
            array_map(fn ($x) => $x->typeSerialize(), $this->sets),
52
        ];
53
    }
54
55
    public function getTotalCount(): int
56
    {
57
        return $this->totalCount;
58
    }
59
60
    public function getSets(): array
61
    {
62
        return $this->sets;
63
    }
64
}
65