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
ChangeAssetNameChangeBuilder.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\ChangeValue\AssetChangeValue
;
18
use
Commercetools\History\Models\ChangeValue\AssetChangeValueBuilder
;
19
use
Commercetools\History\Models\Common\LocalizedString
;
20
use
Commercetools\History\Models\Common\LocalizedStringBuilder
;
21
25
final
class
ChangeAssetNameChangeBuilder
implements
Builder
26
{
31
private
$change;
32
37
private
$previousValue;
38
43
private
$nextValue;
44
49
private
$asset;
50
55
public
function
getChange
()
56
{
57
return
$this->change;
58
}
59
66
public
function
getPreviousValue
()
67
{
68
return
$this->previousValue instanceof
LocalizedStringBuilder
? $this->previousValue->
build
() : $this->previousValue;
69
}
70
77
public
function
getNextValue
()
78
{
79
return
$this->nextValue instanceof
LocalizedStringBuilder
? $this->nextValue->
build
() : $this->nextValue;
80
}
81
88
public
function
getAsset
()
89
{
90
return
$this->asset instanceof
AssetChangeValueBuilder
? $this->asset->
build
() : $this->asset;
91
}
92
97
public
function
withChange
(?
string
$change)
98
{
99
$this->change = $change;
100
101
return
$this;
102
}
103
108
public
function
withPreviousValue
(?
LocalizedString
$previousValue)
109
{
110
$this->previousValue = $previousValue;
111
112
return
$this;
113
}
114
119
public
function
withNextValue
(?
LocalizedString
$nextValue)
120
{
121
$this->nextValue = $nextValue;
122
123
return
$this;
124
}
125
130
public
function
withAsset
(?
AssetChangeValue
$asset)
131
{
132
$this->asset = $asset;
133
134
return
$this;
135
}
136
141
public
function
withPreviousValueBuilder
(?
LocalizedStringBuilder
$previousValue)
142
{
143
$this->previousValue = $previousValue;
144
145
return
$this;
146
}
147
152
public
function
withNextValueBuilder
(?
LocalizedStringBuilder
$nextValue)
153
{
154
$this->nextValue = $nextValue;
155
156
return
$this;
157
}
158
163
public
function
withAssetBuilder
(?
AssetChangeValueBuilder
$asset)
164
{
165
$this->asset = $asset;
166
167
return
$this;
168
}
169
170
public
function
build
():
ChangeAssetNameChange
171
{
172
return
new
ChangeAssetNameChangeModel
(
173
$this->change,
174
$this->previousValue instanceof
LocalizedStringBuilder
? $this->previousValue->
build
() : $this->previousValue,
175
$this->nextValue instanceof
LocalizedStringBuilder
? $this->nextValue->
build
() : $this->nextValue,
176
$this->asset instanceof
AssetChangeValueBuilder
? $this->asset->
build
() : $this->asset
177
);
178
}
179
180
public
static
function
of
():
ChangeAssetNameChangeBuilder
181
{
182
return
new
self
();
183
}
184
}
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\ChangeAssetNameChangeBuilder
Definition
ChangeAssetNameChangeBuilder.php:26
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withAssetBuilder
withAssetBuilder(?AssetChangeValueBuilder $asset)
Definition
ChangeAssetNameChangeBuilder.php:163
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withAsset
withAsset(?AssetChangeValue $asset)
Definition
ChangeAssetNameChangeBuilder.php:130
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\getChange
getChange()
Definition
ChangeAssetNameChangeBuilder.php:55
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withNextValueBuilder
withNextValueBuilder(?LocalizedStringBuilder $nextValue)
Definition
ChangeAssetNameChangeBuilder.php:152
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withPreviousValueBuilder
withPreviousValueBuilder(?LocalizedStringBuilder $previousValue)
Definition
ChangeAssetNameChangeBuilder.php:141
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withChange
withChange(?string $change)
Definition
ChangeAssetNameChangeBuilder.php:97
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withPreviousValue
withPreviousValue(?LocalizedString $previousValue)
Definition
ChangeAssetNameChangeBuilder.php:108
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\getAsset
getAsset()
Definition
ChangeAssetNameChangeBuilder.php:88
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\getNextValue
getNextValue()
Definition
ChangeAssetNameChangeBuilder.php:77
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\withNextValue
withNextValue(?LocalizedString $nextValue)
Definition
ChangeAssetNameChangeBuilder.php:119
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\of
static of()
Definition
ChangeAssetNameChangeBuilder.php:180
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\build
build()
Definition
ChangeAssetNameChangeBuilder.php:170
Commercetools\History\Models\Change\ChangeAssetNameChangeBuilder\getPreviousValue
getPreviousValue()
Definition
ChangeAssetNameChangeBuilder.php:66
Commercetools\History\Models\Change\ChangeAssetNameChangeModel
Definition
ChangeAssetNameChangeModel.php:25
Commercetools\History\Models\ChangeValue\AssetChangeValueBuilder
Definition
AssetChangeValueBuilder.php:24
Commercetools\History\Models\ChangeValue\AssetChangeValueBuilder\build
build()
Definition
AssetChangeValueBuilder.php:92
Commercetools\History\Models\Common\LocalizedStringBuilder
Definition
LocalizedStringBuilder.php:20
Commercetools\History\Models\Common\LocalizedStringBuilder\build
build()
Definition
LocalizedStringBuilder.php:42
Commercetools\Base\Builder
Definition
Builder.php:16
Commercetools\Base\JsonObject
Definition
JsonObject.php:15
Commercetools\History\Models\Change\ChangeAssetNameChange
Definition
ChangeAssetNameChange.php:17
Commercetools\History\Models\ChangeValue\AssetChangeValue
Definition
AssetChangeValue.php:16
Commercetools\History\Models\Common\LocalizedString
Definition
LocalizedString.php:14
Commercetools\History\Models\Change
Definition
AddAddressChange.php:9
Generated by
1.9.8