commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
LocalizedStringSetFieldBuilder.php
1<?php
2
3declare(strict_types=1);
10
17use stdClass;
18
23{
28 private $value;
29
34 public function getValue()
35 {
36 return $this->value;
37 }
38
43 public function withValue(?LocalizedStringCollection $value)
44 {
45 $this->value = $value;
46
47 return $this;
48 }
49
50
51 public function build(): LocalizedStringSetField
52 {
54 $this->value
55 );
56 }
57
58 public static function of(): LocalizedStringSetFieldBuilder
59 {
60 return new self();
61 }
62}