commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ReviewTransitionStateActionModel.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
81 public function getState()
82 {
83 if (is_null($this->state)) {
85 $data = $this->raw(self::FIELD_STATE);
86 if (is_null($data)) {
87 return null;
88 }
89
90 $this->state = StateResourceIdentifierModel::of($data);
91 }
92
93 return $this->state;
94 }
95
102 public function getForce()
103 {
104 if (is_null($this->force)) {
106 $data = $this->raw(self::FIELD_FORCE);
107 if (is_null($data)) {
108 return null;
109 }
110 $this->force = (bool) $data;
111 }
112
113 return $this->force;
114 }
115
116
121 {
122 $this->state = $state;
123 }
124
128 public function setForce(?bool $force): void
129 {
130 $this->force = $force;
131 }
132}
__construct(?StateResourceIdentifier $state=null, ?bool $force=null, ?string $action=null)