1 | <?php |
||
16 | class DiscountAllocation extends Model |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $amount; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $discountApplicationIndex; |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getAmount() |
||
35 | |||
36 | /** |
||
37 | * @param string $amount |
||
38 | * |
||
39 | * @return DiscountAllocation |
||
40 | */ |
||
41 | public function setAmount($amount) |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getDiscountApplicationIndex() |
||
55 | |||
56 | /** |
||
57 | * @param string $discountApplicationIndex |
||
58 | * |
||
59 | * @return DiscountAllocation |
||
60 | */ |
||
61 | public function setDiscountApplicationIndex($discountApplicationIndex) |
||
67 | } |