commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-import
src
Models
Common
CustomerKeyReferenceModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Import\Models\Common
;
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
CustomerKeyReferenceModel
extends
JsonObjectModel
implements
CustomerKeyReference
21
{
22
public
const
DISCRIMINATOR_VALUE
=
'customer'
;
27
protected
$key
;
28
33
protected
$typeId
;
34
35
39
public
function
__construct
(
40
?
string
$key
=
null
,
41
?
string
$typeId
=
null
42
) {
43
$this->key =
$key
;
44
$this->typeId =
$typeId
??
self::DISCRIMINATOR_VALUE
;
45
}
46
51
public
function
getKey
()
52
{
53
if
(is_null($this->key)) {
55
$data = $this->
raw
(self::FIELD_KEY);
56
if
(is_null($data)) {
57
return
null
;
58
}
59
$this->key = (string) $data;
60
}
61
62
return
$this->key
;
63
}
64
71
public
function
getTypeId
()
72
{
73
if
(is_null($this->typeId)) {
75
$data = $this->
raw
(self::FIELD_TYPE_ID);
76
if
(is_null($data)) {
77
return
null
;
78
}
79
$this->typeId = (string) $data;
80
}
81
82
return
$this->typeId
;
83
}
84
85
89
public
function
setKey
(?
string
$key
): void
90
{
91
$this->key =
$key
;
92
}
93
}
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\Import\Models\Common\CustomerKeyReferenceModel
Definition:
CustomerKeyReferenceModel.php:21
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\setKey
setKey(?string $key)
Definition:
CustomerKeyReferenceModel.php:89
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\$typeId
$typeId
Definition:
CustomerKeyReferenceModel.php:33
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\$key
$key
Definition:
CustomerKeyReferenceModel.php:27
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\__construct
__construct(?string $key=null, ?string $typeId=null)
Definition:
CustomerKeyReferenceModel.php:39
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
CustomerKeyReferenceModel.php:22
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\getKey
getKey()
Definition:
CustomerKeyReferenceModel.php:51
Commercetools\Import\Models\Common\CustomerKeyReferenceModel\getTypeId
getTypeId()
Definition:
CustomerKeyReferenceModel.php:71
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Import\Models\Common\CustomerKeyReference
Definition:
CustomerKeyReference.php:15
Commercetools\Import\Models\Common
Definition:
Address.php:9
Generated by
1.9.1