12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Api\Data;
- /**
- * Downloadable Option
- * @api
- * @since 100.0.2
- */
- interface DownloadableOptionInterface
- {
- const DOWNLOADABLE_LINKS = 'downloadable_links';
- /**
- * Returns the list of downloadable links
- *
- * @return int[]
- */
- public function getDownloadableLinks();
- /**
- * Sets the list of downloadable links
- *
- * @param int[] $downloadableLinks
- * @return $this
- */
- public function setDownloadableLinks($downloadableLinks);
- }
|