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