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