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
37 public function getValue()
38 {
39 return $this->value;
40 }
41
46 public function withValue(?LocalizedStringCollection $value)
47 {
48 $this->value = $value;
49
50 return $this;
51 }
52
53
54 public function build(): LocalizedStringSetField
55 {
57 $this->value
58 );
59 }
60
61 public static function of(): LocalizedStringSetFieldBuilder
62 {
63 return new self();
64 }
65}