Total Complexity | 5 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class GetChatNotificationSettingsExceptions extends TdFunction |
||
15 | { |
||
16 | public const TYPE_NAME = 'getChatNotificationSettingsExceptions'; |
||
17 | |||
18 | /** |
||
19 | * If specified, only chats from the specified scope will be returned. |
||
20 | * |
||
21 | * @var NotificationSettingsScope |
||
22 | */ |
||
23 | protected NotificationSettingsScope $scope; |
||
24 | |||
25 | /** |
||
26 | * If true, also chats with non-default sound will be returned. |
||
27 | * |
||
28 | * @var bool |
||
29 | */ |
||
30 | protected bool $compareSound; |
||
31 | |||
32 | public function __construct(NotificationSettingsScope $scope, bool $compareSound) |
||
33 | { |
||
34 | $this->scope = $scope; |
||
35 | $this->compareSound = $compareSound; |
||
36 | } |
||
37 | |||
38 | public static function fromArray(array $array): GetChatNotificationSettingsExceptions |
||
39 | { |
||
40 | return new static( |
||
41 | TdSchemaRegistry::fromArray($array['scope']), |
||
42 | $array['compare_sound'], |
||
43 | ); |
||
44 | } |
||
45 | |||
46 | public function typeSerialize(): array |
||
47 | { |
||
48 | return [ |
||
49 | '@type' => static::TYPE_NAME, |
||
50 | 'scope' => $this->scope->typeSerialize(), |
||
51 | 'compare_sound' => $this->compareSound, |
||
52 | ]; |
||
53 | } |
||
54 | |||
55 | public function getScope(): NotificationSettingsScope |
||
56 | { |
||
57 | return $this->scope; |
||
58 | } |
||
59 | |||
60 | public function getCompareSound(): bool |
||
63 | } |
||
64 | } |
||
65 |