commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-history
src
Models
Change
AddLocationChangeBuilder.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\History\Models\Change
;
10
11
use
Commercetools\Base\Builder
;
12
use
Commercetools\Base\DateTimeImmutableCollection
;
13
use
Commercetools\Base\JsonObject
;
14
use
Commercetools\Base\JsonObjectModel
;
15
use
Commercetools\Base\MapperFactory
;
16
use stdClass;
17
use
Commercetools\History\Models\Common\Location
;
18
use
Commercetools\History\Models\Common\LocationBuilder
;
19
23
final
class
AddLocationChangeBuilder
implements
Builder
24
{
29
private
$change;
30
35
private
$nextValue;
36
41
public
function
getChange
()
42
{
43
return
$this->change;
44
}
45
52
public
function
getNextValue
()
53
{
54
return
$this->nextValue instanceof
LocationBuilder
? $this->nextValue->
build
() : $this->nextValue;
55
}
56
61
public
function
withChange
(?
string
$change)
62
{
63
$this->change = $change;
64
65
return
$this;
66
}
67
72
public
function
withNextValue
(?
Location
$nextValue)
73
{
74
$this->nextValue = $nextValue;
75
76
return
$this;
77
}
78
83
public
function
withNextValueBuilder
(?
LocationBuilder
$nextValue)
84
{
85
$this->nextValue = $nextValue;
86
87
return
$this;
88
}
89
90
public
function
build
():
AddLocationChange
91
{
92
return
new
AddLocationChangeModel
(
93
$this->change,
94
$this->nextValue instanceof
LocationBuilder
? $this->nextValue->
build
() : $this->nextValue
95
);
96
}
97
98
public
static
function
of
():
AddLocationChangeBuilder
99
{
100
return
new
self
();
101
}
102
}
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\AddLocationChangeBuilder
Definition:
AddLocationChangeBuilder.php:24
Commercetools\History\Models\Change\AddLocationChangeBuilder\withNextValueBuilder
withNextValueBuilder(?LocationBuilder $nextValue)
Definition:
AddLocationChangeBuilder.php:83
Commercetools\History\Models\Change\AddLocationChangeBuilder\getChange
getChange()
Definition:
AddLocationChangeBuilder.php:41
Commercetools\History\Models\Change\AddLocationChangeBuilder\withNextValue
withNextValue(?Location $nextValue)
Definition:
AddLocationChangeBuilder.php:72
Commercetools\History\Models\Change\AddLocationChangeBuilder\getNextValue
getNextValue()
Definition:
AddLocationChangeBuilder.php:52
Commercetools\History\Models\Change\AddLocationChangeBuilder\build
build()
Definition:
AddLocationChangeBuilder.php:90
Commercetools\History\Models\Change\AddLocationChangeBuilder\withChange
withChange(?string $change)
Definition:
AddLocationChangeBuilder.php:61
Commercetools\History\Models\Change\AddLocationChangeBuilder\of
static of()
Definition:
AddLocationChangeBuilder.php:98
Commercetools\History\Models\Change\AddLocationChangeModel
Definition:
AddLocationChangeModel.php:23
Commercetools\History\Models\Common\LocationBuilder
Definition:
LocationBuilder.php:22
Commercetools\History\Models\Common\LocationBuilder\build
build()
Definition:
LocationBuilder.php:78
Commercetools\Base\Builder
Definition:
Builder.php:16
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