| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class SetUserPrivacySettingRules extends TdFunction |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'setUserPrivacySettingRules'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The privacy setting. |
||
| 20 | */ |
||
| 21 | protected UserPrivacySetting $setting; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * The new privacy rules. |
||
| 25 | */ |
||
| 26 | protected UserPrivacySettingRules $rules; |
||
| 27 | |||
| 28 | public function __construct(UserPrivacySetting $setting, UserPrivacySettingRules $rules) |
||
| 32 | } |
||
| 33 | |||
| 34 | public static function fromArray(array $array): SetUserPrivacySettingRules |
||
| 35 | { |
||
| 36 | return new static( |
||
| 37 | TdSchemaRegistry::fromArray($array['setting']), |
||
| 38 | TdSchemaRegistry::fromArray($array['rules']), |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | |||
| 42 | public function typeSerialize(): array |
||
| 48 | ]; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getSetting(): UserPrivacySetting |
||
| 52 | { |
||
| 53 | return $this->setting; |
||
| 54 | } |
||
| 55 | |||
| 56 | public function getRules(): UserPrivacySettingRules |
||
| 59 | } |
||
| 60 | } |
||
| 61 |