commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
StandalonePriceChangeValueActionModel.php
1<?php
2
3declare(strict_types=1);
10
17use stdClass;
18
23{
24 public const DISCRIMINATOR_VALUE = 'changeValue';
29 protected $action;
30
35 protected $value;
36
41 protected $staged;
42
43
47 public function __construct(
48 ?Money $value = null,
49 ?bool $staged = null,
50 ?string $action = null
51 ) {
52 $this->value = $value;
53 $this->staged = $staged;
54 $this->action = $action ?? self::DISCRIMINATOR_VALUE;
55 }
56
61 public function getAction()
62 {
63 if (is_null($this->action)) {
65 $data = $this->raw(self::FIELD_ACTION);
66 if (is_null($data)) {
67 return null;
68 }
69 $this->action = (string) $data;
70 }
71
72 return $this->action;
73 }
74
82 public function getValue()
83 {
84 if (is_null($this->value)) {
86 $data = $this->raw(self::FIELD_VALUE);
87 if (is_null($data)) {
88 return null;
89 }
90
91 $this->value = MoneyModel::of($data);
92 }
93
94 return $this->value;
95 }
96
103 public function getStaged()
104 {
105 if (is_null($this->staged)) {
107 $data = $this->raw(self::FIELD_STAGED);
108 if (is_null($data)) {
109 return null;
110 }
111 $this->staged = (bool) $data;
112 }
113
114 return $this->staged;
115 }
116
117
121 public function setValue(?Money $value): void
122 {
123 $this->value = $value;
124 }
125
129 public function setStaged(?bool $staged): void
130 {
131 $this->staged = $staged;
132 }
133}