commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
lib
commercetools-history
src
Models
Change
SetShippingInfoPriceChangeBuilder.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\Money
;
18
use
Commercetools\History\Models\Common\MoneyBuilder
;
19
23
final
class
SetShippingInfoPriceChangeBuilder
implements
Builder
24
{
29
private
$change;
30
35
private
$previousValue;
36
41
private
$nextValue;
42
47
public
function
getChange
()
48
{
49
return
$this->change;
50
}
51
58
public
function
getPreviousValue
()
59
{
60
return
$this->previousValue instanceof
MoneyBuilder
? $this->previousValue->
build
() : $this->previousValue;
61
}
62
69
public
function
getNextValue
()
70
{
71
return
$this->nextValue instanceof
MoneyBuilder
? $this->nextValue->
build
() : $this->nextValue;
72
}
73
78
public
function
withChange
(?
string
$change)
79
{
80
$this->change = $change;
81
82
return
$this;
83
}
84
89
public
function
withPreviousValue
(?
Money
$previousValue)
90
{
91
$this->previousValue = $previousValue;
92
93
return
$this;
94
}
95
100
public
function
withNextValue
(?
Money
$nextValue)
101
{
102
$this->nextValue = $nextValue;
103
104
return
$this;
105
}
106
111
public
function
withPreviousValueBuilder
(?
MoneyBuilder
$previousValue)
112
{
113
$this->previousValue = $previousValue;
114
115
return
$this;
116
}
117
122
public
function
withNextValueBuilder
(?
MoneyBuilder
$nextValue)
123
{
124
$this->nextValue = $nextValue;
125
126
return
$this;
127
}
128
129
public
function
build
():
SetShippingInfoPriceChange
130
{
131
return
new
SetShippingInfoPriceChangeModel
(
132
$this->change,
133
$this->previousValue instanceof
MoneyBuilder
? $this->previousValue->
build
() : $this->previousValue,
134
$this->nextValue instanceof
MoneyBuilder
? $this->nextValue->
build
() : $this->nextValue
135
);
136
}
137
138
public
static
function
of
():
SetShippingInfoPriceChangeBuilder
139
{
140
return
new
self
();
141
}
142
}
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\SetShippingInfoPriceChangeBuilder
Definition
SetShippingInfoPriceChangeBuilder.php:24
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\withChange
withChange(?string $change)
Definition
SetShippingInfoPriceChangeBuilder.php:78
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\getChange
getChange()
Definition
SetShippingInfoPriceChangeBuilder.php:47
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\withNextValueBuilder
withNextValueBuilder(?MoneyBuilder $nextValue)
Definition
SetShippingInfoPriceChangeBuilder.php:122
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\getNextValue
getNextValue()
Definition
SetShippingInfoPriceChangeBuilder.php:69
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\getPreviousValue
getPreviousValue()
Definition
SetShippingInfoPriceChangeBuilder.php:58
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\withNextValue
withNextValue(?Money $nextValue)
Definition
SetShippingInfoPriceChangeBuilder.php:100
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\of
static of()
Definition
SetShippingInfoPriceChangeBuilder.php:138
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\withPreviousValueBuilder
withPreviousValueBuilder(?MoneyBuilder $previousValue)
Definition
SetShippingInfoPriceChangeBuilder.php:111
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\withPreviousValue
withPreviousValue(?Money $previousValue)
Definition
SetShippingInfoPriceChangeBuilder.php:89
Commercetools\History\Models\Change\SetShippingInfoPriceChangeBuilder\build
build()
Definition
SetShippingInfoPriceChangeBuilder.php:129
Commercetools\History\Models\Change\SetShippingInfoPriceChangeModel
Definition
SetShippingInfoPriceChangeModel.php:23
Commercetools\History\Models\Common\MoneyBuilder
Definition
MoneyBuilder.php:22
Commercetools\History\Models\Common\MoneyBuilder\build
build()
Definition
MoneyBuilder.php:130
Commercetools\Base\Builder
Definition
Builder.php:16
Commercetools\Base\JsonObject
Definition
JsonObject.php:15
Commercetools\History\Models\Change\SetShippingInfoPriceChange
Definition
SetShippingInfoPriceChange.php:16
Commercetools\History\Models\Common\Money
Definition
Money.php:15
Commercetools\History\Models\Change
Definition
AddAddressChange.php:9
Generated by
1.9.8