commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-history
src
Models
Change
AddLocationChangeModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\History\Models\Change
;
10
11
use
Commercetools\Base\DateTimeImmutableCollection
;
12
use
Commercetools\Base\JsonObject
;
13
use
Commercetools\Base\JsonObjectModel
;
14
use
Commercetools\Base\MapperFactory
;
15
use stdClass;
16
use
Commercetools\History\Models\Common\Location
;
17
use
Commercetools\History\Models\Common\LocationModel
;
18
22
final
class
AddLocationChangeModel
extends
JsonObjectModel
implements
AddLocationChange
23
{
24
25
public
const
DISCRIMINATOR_VALUE
=
'AddLocationChange'
;
30
protected
$type
;
31
36
protected
$change
;
37
42
protected
$nextValue
;
43
44
48
public
function
__construct
(
49
?
string
$change
=
null
,
50
?
Location
$nextValue
=
null
,
51
?
string
$type
=
null
52
) {
53
$this->change =
$change
;
54
$this->nextValue =
$nextValue
;
55
$this->type =
$type
??
self::DISCRIMINATOR_VALUE
;
56
}
57
62
public
function
getType
()
63
{
64
if
(is_null($this->type)) {
66
$data = $this->
raw
(self::FIELD_TYPE);
67
if
(is_null($data)) {
68
return
null
;
69
}
70
$this->type = (string) $data;
71
}
72
73
return
$this->type
;
74
}
75
80
public
function
getChange
()
81
{
82
if
(is_null($this->change)) {
84
$data = $this->
raw
(self::FIELD_CHANGE);
85
if
(is_null($data)) {
86
return
null
;
87
}
88
$this->change = (string) $data;
89
}
90
91
return
$this->change
;
92
}
93
100
public
function
getNextValue
()
101
{
102
if
(is_null($this->nextValue)) {
104
$data = $this->
raw
(self::FIELD_NEXT_VALUE);
105
if
(is_null($data)) {
106
return
null
;
107
}
108
109
$this->nextValue =
LocationModel::of
($data);
110
}
111
112
return
$this->nextValue
;
113
}
114
115
119
public
function
setChange
(?
string
$change
): void
120
{
121
$this->change =
$change
;
122
}
123
127
public
function
setNextValue
(?
Location
$nextValue
): void
128
{
129
$this->nextValue =
$nextValue
;
130
}
131
132
133
134
}
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\History\Models\Change\AddLocationChangeModel
Definition:
AddLocationChangeModel.php:23
Commercetools\History\Models\Change\AddLocationChangeModel\$nextValue
$nextValue
Definition:
AddLocationChangeModel.php:42
Commercetools\History\Models\Change\AddLocationChangeModel\$change
$change
Definition:
AddLocationChangeModel.php:36
Commercetools\History\Models\Change\AddLocationChangeModel\$type
$type
Definition:
AddLocationChangeModel.php:30
Commercetools\History\Models\Change\AddLocationChangeModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
AddLocationChangeModel.php:25
Commercetools\History\Models\Change\AddLocationChangeModel\getNextValue
getNextValue()
Definition:
AddLocationChangeModel.php:100
Commercetools\History\Models\Change\AddLocationChangeModel\__construct
__construct(?string $change=null, ?Location $nextValue=null, ?string $type=null)
Definition:
AddLocationChangeModel.php:48
Commercetools\History\Models\Change\AddLocationChangeModel\setNextValue
setNextValue(?Location $nextValue)
Definition:
AddLocationChangeModel.php:127
Commercetools\History\Models\Change\AddLocationChangeModel\getType
getType()
Definition:
AddLocationChangeModel.php:62
Commercetools\History\Models\Change\AddLocationChangeModel\getChange
getChange()
Definition:
AddLocationChangeModel.php:80
Commercetools\History\Models\Change\AddLocationChangeModel\setChange
setChange(?string $change)
Definition:
AddLocationChangeModel.php:119
Commercetools\History\Models\Common\LocationModel
Definition:
LocationModel.php:21
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\History\Models\Change\AddLocationChange
Definition:
AddLocationChange.php:16
Commercetools\History\Models\Common\Location
Definition:
Location.php:15
Commercetools\History\Models\Change
Definition:
AddAddressChange.php:9
Generated by
1.9.1