commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ChangeValueAbsoluteChangeValueModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
17
22{
23
24 public const DISCRIMINATOR_VALUE = 'absolute';
29 protected $type;
30
35 protected $money;
36
37
41 public function __construct(
42 ?MoneyCollection $money = null,
43 ?string $type = null
44 ) {
45 $this->money = $money;
46 $this->type = $type ?? self::DISCRIMINATOR_VALUE;
47 }
48
53 public function getType()
54 {
55 if (is_null($this->type)) {
57 $data = $this->raw(self::FIELD_TYPE);
58 if (is_null($data)) {
59 return null;
60 }
61 $this->type = (string) $data;
62 }
63
64 return $this->type;
65 }
66
73 public function getMoney()
74 {
75 if (is_null($this->money)) {
77 $data = $this->raw(self::FIELD_MONEY);
78 if (is_null($data)) {
79 return null;
80 }
81 $this->money = MoneyCollection::fromArray($data);
82 }
83
84 return $this->money;
85 }
86
87
91 public function setMoney(?MoneyCollection $money): void
92 {
93 $this->money = $money;
94 }
95
96
97
98}