commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ImportContainerUpdateDraftModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
26 protected $version;
27
32 protected $resourceType;
33
34
38 public function __construct(
39 ?int $version = null,
40 ?string $resourceType = null
41 ) {
42 $this->version = $version;
43 $this->resourceType = $resourceType;
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
73 public function getResourceType()
74 {
75 if (is_null($this->resourceType)) {
77 $data = $this->raw(self::FIELD_RESOURCE_TYPE);
78 if (is_null($data)) {
79 return null;
80 }
81 $this->resourceType = (string) $data;
82 }
83
85 }
86
87
91 public function setVersion(?int $version): void
92 {
93 $this->version = $version;
94 }
95
99 public function setResourceType(?string $resourceType): void
100 {
101 $this->resourceType = $resourceType;
102 }
103}