commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
CustomFieldLocalizedEnumTypeBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
22 {
27  private $values;
28 
35  public function getValues()
36  {
37  return $this->values;
38  }
39 
45  {
46  $this->values = $values;
47 
48  return $this;
49  }
50 
51 
53  {
55  $this->values
56  );
57  }
58 
59  public static function of(): CustomFieldLocalizedEnumTypeBuilder
60  {
61  return new self();
62  }
63 }