TierPriceInterface.php 477 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Catalog\Pricing\Price;
  7. /**
  8. * Tier price interface
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface TierPriceInterface
  14. {
  15. /**
  16. * @return array
  17. */
  18. public function getTierPriceList();
  19. /**
  20. * @return int
  21. */
  22. public function getTierPriceCount();
  23. /**
  24. * @return bool
  25. */
  26. public function isPercentageDiscount();
  27. }