commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-api
src
Models
StandalonePrice
StandalonePriceChangeValueActionModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Api\Models\StandalonePrice
;
10
11
use
Commercetools\Api\Models\Common\Money
;
12
use
Commercetools\Api\Models\Common\MoneyModel
;
13
use
Commercetools\Base\DateTimeImmutableCollection
;
14
use
Commercetools\Base\JsonObject
;
15
use
Commercetools\Base\JsonObjectModel
;
16
use
Commercetools\Base\MapperFactory
;
17
use stdClass;
18
22
final
class
StandalonePriceChangeValueActionModel
extends
JsonObjectModel
implements
StandalonePriceChangeValueAction
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
81
public
function
getValue
()
82
{
83
if
(is_null($this->value)) {
85
$data = $this->
raw
(self::FIELD_VALUE);
86
if
(is_null($data)) {
87
return
null
;
88
}
89
90
$this->value =
MoneyModel::of
($data);
91
}
92
93
return
$this->value
;
94
}
95
102
public
function
getStaged
()
103
{
104
if
(is_null($this->staged)) {
106
$data = $this->
raw
(self::FIELD_STAGED);
107
if
(is_null($data)) {
108
return
null
;
109
}
110
$this->staged = (bool) $data;
111
}
112
113
return
$this->staged
;
114
}
115
116
120
public
function
setValue
(?
Money
$value
): void
121
{
122
$this->value =
$value
;
123
}
124
128
public
function
setStaged
(?
bool
$staged
): void
129
{
130
$this->staged =
$staged
;
131
}
132
}
Commercetools\Api\Models\Common\MoneyModel
Definition:
MoneyModel.php:21
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel
Definition:
StandalonePriceChangeValueActionModel.php:23
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\getValue
getValue()
Definition:
StandalonePriceChangeValueActionModel.php:81
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\setStaged
setStaged(?bool $staged)
Definition:
StandalonePriceChangeValueActionModel.php:128
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
StandalonePriceChangeValueActionModel.php:24
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\$action
$action
Definition:
StandalonePriceChangeValueActionModel.php:29
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\$value
$value
Definition:
StandalonePriceChangeValueActionModel.php:35
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\getStaged
getStaged()
Definition:
StandalonePriceChangeValueActionModel.php:102
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\getAction
getAction()
Definition:
StandalonePriceChangeValueActionModel.php:61
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\setValue
setValue(?Money $value)
Definition:
StandalonePriceChangeValueActionModel.php:120
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\__construct
__construct(?Money $value=null, ?bool $staged=null, ?string $action=null)
Definition:
StandalonePriceChangeValueActionModel.php:47
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueActionModel\$staged
$staged
Definition:
StandalonePriceChangeValueActionModel.php:41
Commercetools\Base\BaseJsonObject\raw
raw(string $field)
Definition:
BaseJsonObject.php:57
Commercetools\Base\BaseJsonObject\of
static of($data=null)
Definition:
BaseJsonObject.php:26
Commercetools\Base\DateTimeImmutableCollection
Definition:
DateTimeImmutableCollection.php:21
Commercetools\Base\JsonObjectModel
Definition:
JsonObjectModel.php:15
Commercetools\Base\MapperFactory
Definition:
MapperFactory.php:16
Commercetools\Api\Models\Common\Money
Definition:
Money.php:15
Commercetools\Api\Models\StandalonePrice\StandalonePriceChangeValueAction
Definition:
StandalonePriceChangeValueAction.php:16
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Api\Models\StandalonePrice
Definition:
StagedPriceDraft.php:9
Generated by
1.9.1