commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-api
src
Models
Subscription
SubscriptionSetChangesActionModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Api\Models\Subscription
;
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
20
final
class
SubscriptionSetChangesActionModel
extends
JsonObjectModel
implements
SubscriptionSetChangesAction
21
{
22
public
const
DISCRIMINATOR_VALUE
=
'setChanges'
;
27
protected
$action
;
28
33
protected
$changes
;
34
35
39
public
function
__construct
(
40
?
ChangeSubscriptionCollection
$changes
=
null
,
41
?
string
$action
=
null
42
) {
43
$this->changes =
$changes
;
44
$this->action =
$action
??
self::DISCRIMINATOR_VALUE
;
45
}
46
51
public
function
getAction
()
52
{
53
if
(is_null($this->action)) {
55
$data = $this->
raw
(self::FIELD_ACTION);
56
if
(is_null($data)) {
57
return
null
;
58
}
59
$this->action = (string) $data;
60
}
61
62
return
$this->action
;
63
}
64
71
public
function
getChanges
()
72
{
73
if
(is_null($this->changes)) {
75
$data = $this->
raw
(self::FIELD_CHANGES);
76
if
(is_null($data)) {
77
return
null
;
78
}
79
$this->changes =
ChangeSubscriptionCollection::fromArray
($data);
80
}
81
82
return
$this->changes
;
83
}
84
85
89
public
function
setChanges
(?
ChangeSubscriptionCollection
$changes
): void
90
{
91
$this->changes =
$changes
;
92
}
93
}
Commercetools\Api\Models\Subscription\ChangeSubscriptionCollection
Definition:
ChangeSubscriptionCollection.php:22
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel
Definition:
SubscriptionSetChangesActionModel.php:21
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\setChanges
setChanges(?ChangeSubscriptionCollection $changes)
Definition:
SubscriptionSetChangesActionModel.php:89
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\__construct
__construct(?ChangeSubscriptionCollection $changes=null, ?string $action=null)
Definition:
SubscriptionSetChangesActionModel.php:39
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\getChanges
getChanges()
Definition:
SubscriptionSetChangesActionModel.php:71
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\getAction
getAction()
Definition:
SubscriptionSetChangesActionModel.php:51
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
SubscriptionSetChangesActionModel.php:22
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\$action
$action
Definition:
SubscriptionSetChangesActionModel.php:27
Commercetools\Api\Models\Subscription\SubscriptionSetChangesActionModel\$changes
$changes
Definition:
SubscriptionSetChangesActionModel.php:33
Commercetools\Base\BaseJsonObject\raw
raw(string $field)
Definition:
BaseJsonObject.php:57
Commercetools\Base\DateTimeImmutableCollection
Definition:
DateTimeImmutableCollection.php:21
Commercetools\Base\JsonObjectModel
Definition:
JsonObjectModel.php:15
Commercetools\Base\MapperFactory
Definition:
MapperFactory.php:16
Commercetools\Base\MapperSequence\fromArray
static fromArray(array $data)
Definition:
MapperSequence.php:56
Commercetools\Api\Models\Subscription\SubscriptionSetChangesAction
Definition:
SubscriptionSetChangesAction.php:15
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Api\Models\Subscription
Definition:
AzureEventGridDestination.php:9
Generated by
1.9.1