commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
QuoteTransitionStateActionModel.php
1<?php
2
3declare(strict_types=1);
10
17use stdClass;
18
23{
24 public const DISCRIMINATOR_VALUE = 'transitionState';
29 protected $action;
30
35 protected $state;
36
41 protected $force;
42
43
47 public function __construct(
49 ?bool $force = null,
50 ?string $action = null
51 ) {
52 $this->state = $state;
53 $this->force = $force;
54 $this->action = $action ?? self::DISCRIMINATOR_VALUE;
55 }
56
61 public function getAction()
62 {
63 if (is_null($this->action)) {
65 $data = $this->raw(self::FIELD_ACTION);
66 if (is_null($data)) {
67 return null;
68 }
69 $this->action = (string) $data;
70 }
71
72 return $this->action;
73 }
74
82 public function getState()
83 {
84 if (is_null($this->state)) {
86 $data = $this->raw(self::FIELD_STATE);
87 if (is_null($data)) {
88 return null;
89 }
90
91 $this->state = StateResourceIdentifierModel::of($data);
92 }
93
94 return $this->state;
95 }
96
103 public function getForce()
104 {
105 if (is_null($this->force)) {
107 $data = $this->raw(self::FIELD_FORCE);
108 if (is_null($data)) {
109 return null;
110 }
111 $this->force = (bool) $data;
112 }
113
114 return $this->force;
115 }
116
117
122 {
123 $this->state = $state;
124 }
125
129 public function setForce(?bool $force): void
130 {
131 $this->force = $force;
132 }
133}
__construct(?StateResourceIdentifier $state=null, ?bool $force=null, ?string $action=null)