Your IP : 18.220.95.129


Current Path : /home/bitrix/ext_www/klimatlend.ua/bitrix/modules/seo/lib/retargeting/
Upload File :
Current File : /home/bitrix/ext_www/klimatlend.ua/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();
}