commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
lib
commercetools-import
src
Models
Common
PriceKeyReferenceModel.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
PriceKeyReferenceModel
extends
JsonObjectModel
implements
PriceKeyReference
21
{
22
public
const
DISCRIMINATOR_VALUE
=
'price'
;
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
53
public
function
getKey
()
54
{
55
if
(is_null($this->key)) {
57
$data = $this->
raw
(self::FIELD_KEY);
58
if
(is_null($data)) {
59
return
null
;
60
}
61
$this->key = (string) $data;
62
}
63
64
return
$this->key
;
65
}
66
73
public
function
getTypeId
()
74
{
75
if
(is_null($this->typeId)) {
77
$data = $this->
raw
(self::FIELD_TYPE_ID);
78
if
(is_null($data)) {
79
return
null
;
80
}
81
$this->typeId = (string) $data;
82
}
83
84
return
$this->typeId
;
85
}
86
87
91
public
function
setKey
(?
string
$key
): void
92
{
93
$this->key =
$key
;
94
}
95
}
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\PriceKeyReferenceModel
Definition
PriceKeyReferenceModel.php:21
Commercetools\Import\Models\Common\PriceKeyReferenceModel\getTypeId
getTypeId()
Definition
PriceKeyReferenceModel.php:73
Commercetools\Import\Models\Common\PriceKeyReferenceModel\__construct
__construct(?string $key=null, ?string $typeId=null)
Definition
PriceKeyReferenceModel.php:39
Commercetools\Import\Models\Common\PriceKeyReferenceModel\setKey
setKey(?string $key)
Definition
PriceKeyReferenceModel.php:91
Commercetools\Import\Models\Common\PriceKeyReferenceModel\getKey
getKey()
Definition
PriceKeyReferenceModel.php:53
Commercetools\Import\Models\Common\PriceKeyReferenceModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition
PriceKeyReferenceModel.php:22
Commercetools\Import\Models\Common\PriceKeyReferenceModel\$key
$key
Definition
PriceKeyReferenceModel.php:27
Commercetools\Import\Models\Common\PriceKeyReferenceModel\$typeId
$typeId
Definition
PriceKeyReferenceModel.php:33
Commercetools\Base\JsonObject
Definition
JsonObject.php:15
Commercetools\Import\Models\Common\PriceKeyReference
Definition
PriceKeyReference.php:15
Commercetools\Import\Models\Common
Definition
Address.php:9
Generated by
1.9.8