Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AmountInterface.php
Go to the documentation of this file.
1 <?php
8 
15 interface AmountInterface
16 {
23  public function getValue($exclude = null);
24 
30  public function __toString();
31 
37  public function getBaseAmount();
38 
45  public function getAdjustmentAmount($adjustmentCode);
46 
52  public function getTotalAdjustmentAmount();
53 
59  public function getAdjustmentAmounts();
60 
67  public function hasAdjustment($adjustmentCode);
68 }