commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
CartSetDirectDiscountsActionModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'setDirectDiscounts';
27  protected $action;
28 
33  protected $discounts;
34 
35 
39  public function __construct(
41  ?string $action = null
42  ) {
43  $this->discounts = $discounts;
44  $this->action = $action ?? self::DISCRIMINATOR_VALUE;
45  }
46 
51  public function getAction()
52  {
53  if (is_null($this->action)) {
55  $data = $this->raw(self::FIELD_ACTION);
56  if (is_null($data)) {
57  return null;
58  }
59  $this->action = (string) $data;
60  }
61 
62  return $this->action;
63  }
64 
75  public function getDiscounts()
76  {
77  if (is_null($this->discounts)) {
79  $data = $this->raw(self::FIELD_DISCOUNTS);
80  if (is_null($data)) {
81  return null;
82  }
83  $this->discounts = DirectDiscountDraftCollection::fromArray($data);
84  }
85 
86  return $this->discounts;
87  }
88 
89 
94  {
95  $this->discounts = $discounts;
96  }
97 }
__construct(?DirectDiscountDraftCollection $discounts=null, ?string $action=null)