commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-history
src
Models
Label
StringLabelModel.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\History\Models\Label
;
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
StringLabelModel
extends
JsonObjectModel
implements
StringLabel
21
{
22
23
public
const
DISCRIMINATOR_VALUE
=
'StringLabel'
;
28
protected
$type
;
29
34
protected
$value
;
35
36
40
public
function
__construct
(
41
?
string
$value
=
null
,
42
?
string
$type
=
null
43
) {
44
$this->value =
$value
;
45
$this->type =
$type
??
self::DISCRIMINATOR_VALUE
;
46
}
47
52
public
function
getType
()
53
{
54
if
(is_null($this->type)) {
56
$data = $this->
raw
(self::FIELD_TYPE);
57
if
(is_null($data)) {
58
return
null
;
59
}
60
$this->type = (string) $data;
61
}
62
63
return
$this->type
;
64
}
65
72
public
function
getValue
()
73
{
74
if
(is_null($this->value)) {
76
$data = $this->
raw
(self::FIELD_VALUE);
77
if
(is_null($data)) {
78
return
null
;
79
}
80
$this->value = (string) $data;
81
}
82
83
return
$this->value
;
84
}
85
86
90
public
function
setValue
(?
string
$value
): void
91
{
92
$this->value =
$value
;
93
}
94
95
96
97
}
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\History\Models\Label\StringLabelModel
Definition:
StringLabelModel.php:21
Commercetools\History\Models\Label\StringLabelModel\setValue
setValue(?string $value)
Definition:
StringLabelModel.php:90
Commercetools\History\Models\Label\StringLabelModel\getValue
getValue()
Definition:
StringLabelModel.php:72
Commercetools\History\Models\Label\StringLabelModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition:
StringLabelModel.php:23
Commercetools\History\Models\Label\StringLabelModel\$value
$value
Definition:
StringLabelModel.php:34
Commercetools\History\Models\Label\StringLabelModel\__construct
__construct(?string $value=null, ?string $type=null)
Definition:
StringLabelModel.php:40
Commercetools\History\Models\Label\StringLabelModel\$type
$type
Definition:
StringLabelModel.php:28
Commercetools\History\Models\Label\StringLabelModel\getType
getType()
Definition:
StringLabelModel.php:52
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\History\Models\Label\StringLabel
Definition:
StringLabel.php:15
Commercetools\History\Models\Label
Definition:
AssociateRoleLabel.php:9
Generated by
1.9.1