1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
DeleteUserConfig.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\V2\Relation;
4
5final class DeleteUserConfig
6{
7 public readonly bool $withMessage;
8 public readonly bool $skipRecent;
9 public readonly bool $withNotification;
10 public readonly bool $skipCheckReason;
11 public readonly bool $withoutRead;
12
13 public function __construct(
14 bool $withMessage = true,
15 bool $skipRecent = false,
16 bool $withNotification = true,
17 bool $skipCheckReason = false,
18 bool $withoutRead = false
19 )
20 {
21 $this->withMessage = $withMessage;
22 $this->skipRecent = $skipRecent;
23 $this->withNotification = $withNotification;
24 $this->skipCheckReason = $skipCheckReason;
25 $this->withoutRead = $withoutRead;
26 }
27}
readonly bool $withMessage
Определения DeleteUserConfig.php:7
readonly bool $skipCheckReason
Определения DeleteUserConfig.php:10
__construct(bool $withMessage=true, bool $skipRecent=false, bool $withNotification=true, bool $skipCheckReason=false, bool $withoutRead=false)
Определения DeleteUserConfig.php:13
readonly bool $skipRecent
Определения DeleteUserConfig.php:8
readonly bool $withNotification
Определения DeleteUserConfig.php:9