Your IP : 3.147.73.201


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