getNotificationSettings()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
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
 * Changes notification settings for chats of a given type.
13
 */
14
class SetScopeNotificationSettings extends TdFunction
15
{
16
    public const TYPE_NAME = 'setScopeNotificationSettings';
17
18
    /**
19
     * Types of chats for which to change the notification settings.
20
     *
21
     * @var NotificationSettingsScope
22
     */
23
    protected NotificationSettingsScope $scope;
24
25
    /**
26
     * The new notification settings for the given scope.
27
     *
28
     * @var ScopeNotificationSettings
29
     */
30
    protected ScopeNotificationSettings $notificationSettings;
31
32
    public function __construct(NotificationSettingsScope $scope, ScopeNotificationSettings $notificationSettings)
33
    {
34
        $this->scope                = $scope;
35
        $this->notificationSettings = $notificationSettings;
36
    }
37
38
    public static function fromArray(array $array): SetScopeNotificationSettings
39
    {
40
        return new static(
41
            TdSchemaRegistry::fromArray($array['scope']),
42
            TdSchemaRegistry::fromArray($array['notification_settings']),
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'                 => static::TYPE_NAME,
50
            'scope'                 => $this->scope->typeSerialize(),
51
            'notification_settings' => $this->notificationSettings->typeSerialize(),
52
        ];
53
    }
54
55
    public function getScope(): NotificationSettingsScope
56
    {
57
        return $this->scope;
58
    }
59
60
    public function getNotificationSettings(): ScopeNotificationSettings
61
    {
62
        return $this->notificationSettings;
63
    }
64
}
65