commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
CartSetKeyActionModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22 public const DISCRIMINATOR_VALUE = 'setKey';
27 protected $action;
28
33 protected $key;
34
35
39 public function __construct(
40 ?string $key = null,
41 ?string $action = null
42 ) {
43 $this->key = $key;
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
72 public function getKey()
73 {
74 if (is_null($this->key)) {
76 $data = $this->raw(self::FIELD_KEY);
77 if (is_null($data)) {
78 return null;
79 }
80 $this->key = (string) $data;
81 }
82
83 return $this->key;
84 }
85
86
90 public function setKey(?string $key): void
91 {
92 $this->key = $key;
93 }
94}
__construct(?string $key=null, ?string $action=null)