commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
VariantSelectionModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
26 protected $type;
27
32 protected $skus;
33
34
38 public function __construct(
39 ?string $type = null,
40 ?array $skus = null
41 ) {
42 $this->type = $type;
43 $this->skus = $skus;
44 }
45
52 public function getType()
53 {
54 if (is_null($this->type)) {
56 $data = $this->raw(self::FIELD_TYPE);
57 if (is_null($data)) {
58 return null;
59 }
60 $this->type = (string) $data;
61 }
62
63 return $this->type;
64 }
65
72 public function getSkus()
73 {
74 if (is_null($this->skus)) {
76 $data = $this->raw(self::FIELD_SKUS);
77 if (is_null($data)) {
78 return null;
79 }
80 $this->skus = $data;
81 }
82
83 return $this->skus;
84 }
85
86
90 public function setType(?string $type): void
91 {
92 $this->type = $type;
93 }
94
98 public function setSkus(?array $skus): void
99 {
100 $this->skus = $skus;
101 }
102}