commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-api
src
Models
Cart
CartSetCustomerIdActionModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Api\Models\Cart
;
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
CartSetCustomerIdActionModel
extends
JsonObjectModel
implements
CartSetCustomerIdAction
21
{
22
public
const
DISCRIMINATOR_VALUE
=
'setCustomerId'
;
27
protected
$action
;
28
33
protected
$customerId
;
34
35
39
public
function
__construct
(
40
?
string
$customerId
=
null
,
41
?
string
$action
=
null
42
) {
43
$this->customerId =
$customerId
;
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
73
public
function
getCustomerId
()
74
{
75
if
(is_null($this->customerId)) {
77
$data = $this->
raw
(self::FIELD_CUSTOMER_ID);
78
if
(is_null($data)) {
79
return
null
;
80
}
81
$this->customerId = (string) $data;
82
}
83
84
return
$this->customerId
;
85
}
86
87
91
public
function
setCustomerId
(?
string
$customerId
): void
92
{
93
$this->customerId =
$customerId
;
94
}
95
}
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel
Definition:
CartSetCustomerIdActionModel.php:21
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
CartSetCustomerIdActionModel.php:22
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\$action
$action
Definition:
CartSetCustomerIdActionModel.php:27
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\getAction
getAction()
Definition:
CartSetCustomerIdActionModel.php:51
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\$customerId
$customerId
Definition:
CartSetCustomerIdActionModel.php:33
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\getCustomerId
getCustomerId()
Definition:
CartSetCustomerIdActionModel.php:73
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\__construct
__construct(?string $customerId=null, ?string $action=null)
Definition:
CartSetCustomerIdActionModel.php:39
Commercetools\Api\Models\Cart\CartSetCustomerIdActionModel\setCustomerId
setCustomerId(?string $customerId)
Definition:
CartSetCustomerIdActionModel.php:91
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\Api\Models\Cart\CartSetCustomerIdAction
Definition:
CartSetCustomerIdAction.php:15
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Api\Models\Cart
Definition:
Cart.php:9
Generated by
1.9.1