commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-api
src
Models
Customer
CustomerSetStoresActionModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Api\Models\Customer
;
10
11
use
Commercetools\Api\Models\Store\StoreResourceIdentifierCollection
;
12
use
Commercetools\Base\DateTimeImmutableCollection
;
13
use
Commercetools\Base\JsonObject
;
14
use
Commercetools\Base\JsonObjectModel
;
15
use
Commercetools\Base\MapperFactory
;
16
use stdClass;
17
21
final
class
CustomerSetStoresActionModel
extends
JsonObjectModel
implements
CustomerSetStoresAction
22
{
23
public
const
DISCRIMINATOR_VALUE
=
'setStores'
;
28
protected
$action
;
29
34
protected
$stores
;
35
36
40
public
function
__construct
(
41
?
StoreResourceIdentifierCollection
$stores
=
null
,
42
?
string
$action
=
null
43
) {
44
$this->stores =
$stores
;
45
$this->action =
$action
??
self::DISCRIMINATOR_VALUE
;
46
}
47
52
public
function
getAction
()
53
{
54
if
(is_null($this->action)) {
56
$data = $this->
raw
(self::FIELD_ACTION);
57
if
(is_null($data)) {
58
return
null
;
59
}
60
$this->action = (string) $data;
61
}
62
63
return
$this->action
;
64
}
65
72
public
function
getStores
()
73
{
74
if
(is_null($this->stores)) {
76
$data = $this->
raw
(self::FIELD_STORES);
77
if
(is_null($data)) {
78
return
null
;
79
}
80
$this->stores =
StoreResourceIdentifierCollection::fromArray
($data);
81
}
82
83
return
$this->stores
;
84
}
85
86
90
public
function
setStores
(?
StoreResourceIdentifierCollection
$stores
): void
91
{
92
$this->stores =
$stores
;
93
}
94
}
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel
Definition:
CustomerSetStoresActionModel.php:22
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\getStores
getStores()
Definition:
CustomerSetStoresActionModel.php:72
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\setStores
setStores(?StoreResourceIdentifierCollection $stores)
Definition:
CustomerSetStoresActionModel.php:90
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\$action
$action
Definition:
CustomerSetStoresActionModel.php:28
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\getAction
getAction()
Definition:
CustomerSetStoresActionModel.php:52
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\__construct
__construct(?StoreResourceIdentifierCollection $stores=null, ?string $action=null)
Definition:
CustomerSetStoresActionModel.php:40
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\$stores
$stores
Definition:
CustomerSetStoresActionModel.php:34
Commercetools\Api\Models\Customer\CustomerSetStoresActionModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
CustomerSetStoresActionModel.php:23
Commercetools\Api\Models\Store\StoreResourceIdentifierCollection
Definition:
StoreResourceIdentifierCollection.php:22
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\Customer\CustomerSetStoresAction
Definition:
CustomerSetStoresAction.php:16
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Api\Models\Customer
Definition:
Customer.php:9
Generated by
1.9.1