LinkInterface.php 412 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Analytics\Api\Data;
  7. /**
  8. * Represents link with collected data and initialized vector for decryption.
  9. */
  10. interface LinkInterface
  11. {
  12. /**
  13. * @return string
  14. */
  15. public function getUrl();
  16. /**
  17. * @return string
  18. */
  19. public function getInitializationVector();
  20. }