commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Variables
$
a
d
e
f
g
o
r
s
t
u
•
All
Classes
Namespaces
Functions
Variables
Pages
Loading...
Searching...
No Matches
lib
commercetools-api
src
Models
Cart
BestDealModel.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
BestDealModel
extends
JsonObjectModel
implements
BestDeal
21
{
22
public
const
DISCRIMINATOR_VALUE
=
'BestDeal'
;
27
protected
$type
;
28
33
protected
$chosenDiscountType
;
34
35
39
public
function
__construct
(
40
?
string
$chosenDiscountType
=
null
,
41
?
string
$type
=
null
42
) {
43
$this->chosenDiscountType =
$chosenDiscountType
;
44
$this->type =
$type
??
self::DISCRIMINATOR_VALUE
;
45
}
39
public
function
__construct
( {
…
}
46
51
public
function
getType
()
52
{
53
if
(is_null($this->type)) {
55
$data = $this->
raw
(self::FIELD_TYPE);
56
if
(is_null($data)) {
57
return
null
;
58
}
59
$this->type = (string) $data;
60
}
61
62
return
$this->type
;
63
}
51
public
function
getType
() {
…
}
64
71
public
function
getChosenDiscountType
()
72
{
73
if
(is_null($this->chosenDiscountType)) {
75
$data = $this->
raw
(self::FIELD_CHOSEN_DISCOUNT_TYPE);
76
if
(is_null($data)) {
77
return
null
;
78
}
79
$this->chosenDiscountType = (string) $data;
80
}
81
82
return
$this->chosenDiscountType
;
83
}
71
public
function
getChosenDiscountType
() {
…
}
84
85
89
public
function
setChosenDiscountType
(?
string
$chosenDiscountType
): void
90
{
91
$this->chosenDiscountType =
$chosenDiscountType
;
92
}
89
public
function
setChosenDiscountType
(?
string
$chosenDiscountType
): void {
…
}
93
}
20
final
class
BestDealModel
extends
JsonObjectModel
implements
BestDeal
{
…
};
Commercetools\Api\Models\Cart\BestDealModel
Definition
BestDealModel.php:21
Commercetools\Api\Models\Cart\BestDealModel\getType
getType()
Definition
BestDealModel.php:51
Commercetools\Api\Models\Cart\BestDealModel\setChosenDiscountType
setChosenDiscountType(?string $chosenDiscountType)
Definition
BestDealModel.php:89
Commercetools\Api\Models\Cart\BestDealModel\$chosenDiscountType
$chosenDiscountType
Definition
BestDealModel.php:33
Commercetools\Api\Models\Cart\BestDealModel\__construct
__construct(?string $chosenDiscountType=null, ?string $type=null)
Definition
BestDealModel.php:39
Commercetools\Api\Models\Cart\BestDealModel\$type
$type
Definition
BestDealModel.php:27
Commercetools\Api\Models\Cart\BestDealModel\DISCRIMINATOR_VALUE
const DISCRIMINATOR_VALUE
Definition
BestDealModel.php:22
Commercetools\Api\Models\Cart\BestDealModel\getChosenDiscountType
getChosenDiscountType()
Definition
BestDealModel.php:71
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\BestDeal
Definition
BestDeal.php:15
Commercetools\Base\JsonObject
Definition
JsonObject.php:15
Commercetools\Api\Models\Cart
Definition
BestDeal.php:9
Generated by
1.9.8