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