Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/calendar/lib/sync/office365/dto/ |
Upload File : |
<?php namespace Bitrix\Calendar\Sync\Office365\Dto; class SectionDto extends Dto { /** @var string */ public $id; /** @var string */ public $name; /** @var string|int */ public $color; /** @var string */ public $hexColor; /** @var boolean */ public $isDefaultCalendar; /** @var string */ public $changeKey; /** @var boolean */ public $canShare; /** @var boolean */ public $canViewPrivateItems; /** @var boolean */ public $canEdit; /** @var array */ public $allowedOnlineMeetingProviders; /** @var string */ public $defaultOnlineMeetingProvider; /** @var boolean */ public $isTallyingResponses; /** @var boolean */ public $isRemovable; /** @var EmailDto */ public $owner; /** * @return array[] */ protected function getComplexPropertyMap(): array { return [ 'owner' => [ 'class' => EmailDto::class, 'isMandatory' => true, ], ]; } }