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/rest/lib/Entity/ |
Upload File : |
<?php declare(strict_types = 1); namespace Bitrix\Rest\Entity; class Integration { public function __construct( private readonly string $elementCode, private readonly string $title, private readonly ?int $id = null, private readonly ?int $userId = null, private readonly ?int $passwordId = null, private readonly ?int $appId = null, private readonly ?array $scope = null, private readonly ?array $widgetList = null, private readonly ?array $outgoingEvents = null, private readonly ?bool $outgoingNeeded = null, private readonly ?string $outgoingHandler = null, private readonly ?bool $widgetNeeded = null, private readonly ?string $widgetHandler = null, private readonly ?string $applicationToken = null, private readonly ?bool $applicationNeeded = null, private readonly ?bool $onlyApi = null, private readonly ?int $botId = null, private readonly ?string $botHandlerUrl = null, ) { } public function getId(): ?int { return $this->id; } public function getUserId(): ?int { return $this->userId; } public function getPasswordId(): ?int { return $this->passwordId; } public function getAppId(): ?int { return $this->appId; } public function getScope(): ?array { return $this->scope; } public function getWidgetList(): ?array { return $this->widgetList; } public function getOutgoingEvents(): ?array { return $this->outgoingEvents; } public function getOutgoingNeeded(): ?bool { return $this->outgoingNeeded; } public function getOutgoingHandler(): ?string { return $this->outgoingHandler; } public function getWidgetNeeded(): ?bool { return $this->widgetNeeded; } public function getWidgetHandler(): ?string { return $this->widgetHandler; } public function getApplicationToken(): ?string { return $this->applicationToken; } public function getApplicationNeeded(): ?bool { return $this->applicationNeeded; } public function getOnlyApi(): ?bool { return $this->onlyApi; } public function getBotId(): ?int { return $this->botId; } public function getBotHandlerUrl(): ?string { return $this->botHandlerUrl; } public function getElementCode(): ?string { return $this->elementCode; } public function getTitle(): string { return $this->title; } }