commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
ReviewUpdateModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
20 final class ReviewUpdateModel extends JsonObjectModel implements ReviewUpdate
21 {
26  protected $version;
27 
32  protected $actions;
33 
34 
38  public function __construct(
39  ?int $version = null,
41  ) {
42  $this->version = $version;
43  $this->actions = $actions;
44  }
45 
52  public function getVersion()
53  {
54  if (is_null($this->version)) {
56  $data = $this->raw(self::FIELD_VERSION);
57  if (is_null($data)) {
58  return null;
59  }
60  $this->version = (int) $data;
61  }
62 
63  return $this->version;
64  }
65 
72  public function getActions()
73  {
74  if (is_null($this->actions)) {
76  $data = $this->raw(self::FIELD_ACTIONS);
77  if (is_null($data)) {
78  return null;
79  }
80  $this->actions = ReviewUpdateActionCollection::fromArray($data);
81  }
82 
83  return $this->actions;
84  }
85 
86 
90  public function setVersion(?int $version): void
91  {
92  $this->version = $version;
93  }
94 
99  {
100  $this->actions = $actions;
101  }
102 }
__construct(?int $version=null, ?ReviewUpdateActionCollection $actions=null)
setActions(?ReviewUpdateActionCollection $actions)