12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Pricing\Price;
- /**
- * Tier price interface
- *
- * @api
- * @since 100.0.2
- */
- interface TierPriceInterface
- {
- /**
- * @return array
- */
- public function getTierPriceList();
- /**
- * @return int
- */
- public function getTierPriceCount();
- /**
- * @return bool
- */
- public function isPercentageDiscount();
- }
|