commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
VariantSelectionBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class VariantSelectionBuilder implements Builder
22{
27 private $type;
28
33 private $skus;
34
41 public function getType()
42 {
43 return $this->type;
44 }
45
52 public function getSkus()
53 {
54 return $this->skus;
55 }
56
61 public function withType(?string $type)
62 {
63 $this->type = $type;
64
65 return $this;
66 }
67
72 public function withSkus(?array $skus)
73 {
74 $this->skus = $skus;
75
76 return $this;
77 }
78
79
80 public function build(): VariantSelection
81 {
82 return new VariantSelectionModel(
83 $this->type,
84 $this->skus
85 );
86 }
87
88 public static function of(): VariantSelectionBuilder
89 {
90 return new self();
91 }
92}