commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
All Classes Namespaces Functions Variables Pages
BestDealModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
20final class BestDealModel extends JsonObjectModel implements BestDeal
21{
22 public const DISCRIMINATOR_VALUE = 'BestDeal';
27 protected $type;
28
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 }
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 }
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
83 }
84
85
89 public function setChosenDiscountType(?string $chosenDiscountType): void
90 {
91 $this->chosenDiscountType = $chosenDiscountType;
92 }
93}
setChosenDiscountType(?string $chosenDiscountType)
__construct(?string $chosenDiscountType=null, ?string $type=null)