Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
GrandTotalDetails.php
Go to the documentation of this file.
1 <?php
8 
11 
16 {
20  const AMOUNT = 'amount';
21  const RATES = 'rates';
22  const GROUP_ID = 'group_id';
28  public function getGroupId()
29  {
30  return $this->_get(self::GROUP_ID);
31  }
32 
36  public function setGroupId($id)
37  {
38  return $this->setData(self::GROUP_ID, $id);
39  }
40 
44  public function getAmount()
45  {
46  return $this->_get(self::AMOUNT);
47  }
48 
52  public function setAmount($amount)
53  {
54  return $this->setData(self::AMOUNT, $amount);
55  }
56 
60  public function getRates()
61  {
62  return $this->_get(self::RATES);
63  }
64 
68  public function setRates($rates)
69  {
70  return $this->setData(self::RATES, $rates);
71  }
72 }
$id
Definition: fieldset.phtml:14
$rates
Definition: tax.phtml:35
$amount
Definition: order.php:14