* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\Mbo\RecommendedLink; interface RecommendedLinkInterface { /** * Get the identifier of the recommended link. * * @return string */ public function getId(); /** * Get the url of the recommended module. * * @return string */ public function getUrl(); /** * Get the display name of the recommended module. * * @return string */ public function getName(); }