| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-analytics/Api/Data/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-analytics/Api/Data/LinkInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Analytics\Api\Data;
/**
* Represents link with collected data and initialized vector for decryption.
*/
interface LinkInterface
{
/**
* @return string
*/
public function getUrl();
/**
* @return string
*/
public function getInitializationVector();
}