| Total Complexity | 5 |
| Total Lines | 49 |
| 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 | * @var int |
||
| 22 | */ |
||
| 23 | protected int $notificationGroupId; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * The maximum identifier of removed notifications. |
||
| 27 | * |
||
| 28 | * @var int |
||
| 29 | */ |
||
| 30 | protected int $maxNotificationId; |
||
| 31 | |||
| 32 | public function __construct(int $notificationGroupId, int $maxNotificationId) |
||
| 33 | { |
||
| 34 | $this->notificationGroupId = $notificationGroupId; |
||
| 35 | $this->maxNotificationId = $maxNotificationId; |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): RemoveNotificationGroup |
||
| 39 | { |
||
| 40 | return new static( |
||
| 41 | $array['notification_group_id'], |
||
| 42 | $array['max_notification_id'], |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | 'notification_group_id' => $this->notificationGroupId, |
||
| 51 | 'max_notification_id' => $this->maxNotificationId, |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getNotificationGroupId(): int |
||
| 56 | { |
||
| 57 | return $this->notificationGroupId; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getMaxNotificationId(): int |
||
| 63 | } |
||
| 64 | } |
||
| 65 |