Your IP : 172.28.240.42


Current Path : /var/www/html/clients/biblio.e-nkama.ru/bitrix/modules/seo/lib/retargeting/
Upload File :
Current File : /var/www/html/clients/biblio.e-nkama.ru/bitrix/modules/seo/lib/retargeting/account.php

<?

namespace Bitrix\Seo\Retargeting;

abstract class Account extends BaseApiObject
{
	protected static $listRowMap = array(
		'ID' => 'ID',
		'NAME' => 'NAME',
	);

	public function getProfileCached()
	{
		$profile = $this->getProfile();
		if($profile)
		{

		}

		return $profile;
	}

	/**
	 * @return Response
	 */
	abstract public function getList();

	/**
	 * @return Response
	 */
	abstract public function getProfile();
}