<?php
/**
 * econda recommendations client library
 *
 * @copyright Copyright econda GmbH
 * @link http://www.econda.de
 * @package Econda/RecEngine
 * @license MIT License
 */
namespace Econda\RecEngine\Config;

/**
 * Configuration classes for econda recommendation engine must implement this interface
 */
interface ConfigInterface
{
	/**
	 * Get econda cross sell accountid
	 * @return string
	 */
	public function getAccountId();
}
