Total Complexity | 5 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class RemoveNotificationGroup extends TdFunction |
||
15 | { |
||
16 | public const TYPE_NAME = 'removeNotificationGroup'; |
||
17 | |||
18 | /** |
||
19 | * Notification group identifier. |
||
20 | */ |
||
21 | protected int $notificationGroupId; |
||
22 | |||
23 | /** |
||
24 | * The maximum identifier of removed notifications. |
||
25 | */ |
||
26 | protected int $maxNotificationId; |
||
27 | |||
28 | public function __construct(int $notificationGroupId, int $maxNotificationId) |
||
32 | } |
||
33 | |||
34 | public static function fromArray(array $array): RemoveNotificationGroup |
||
35 | { |
||
36 | return new static( |
||
37 | $array['notification_group_id'], |
||
38 | $array['max_notification_id'], |
||
39 | ); |
||
40 | } |
||
41 | |||
42 | public function typeSerialize(): array |
||
43 | { |
||
44 | return [ |
||
45 | '@type' => static::TYPE_NAME, |
||
46 | 'notification_group_id' => $this->notificationGroupId, |
||
47 | 'max_notification_id' => $this->maxNotificationId, |
||
48 | ]; |
||
49 | } |
||
50 | |||
51 | public function getNotificationGroupId(): int |
||
52 | { |
||
53 | return $this->notificationGroupId; |
||
54 | } |
||
55 | |||
56 | public function getMaxNotificationId(): int |
||
59 | } |
||
60 | } |
||
61 |