• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/zoom.php
  • Класс: CSocServZoom
  • Вызов: CSocServZoom::getEntityOAuth
public function getEntityOAuth($code = false): CZoomInterface
{
	if (!$this->entityOAuth)
	{
		$this->entityOAuth = new CZoomInterface();
	}

	if ($code !== false)
	{
		$this->entityOAuth->setCode($code);
	}

	return $this->entityOAuth;
}