ProductAttributeInterface.php 372 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Downloadable\Api\Data;
  7. /**
  8. * Interface ProductAttributeInterface
  9. * @api
  10. * @since 100.1.0
  11. */
  12. interface ProductAttributeInterface extends \Magento\Catalog\Api\Data\ProductAttributeInterface
  13. {
  14. const CODE_IS_DOWNLOADABLE = 'is_downloadable';
  15. }