commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
BooleanSetAttributeBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class BooleanSetAttributeBuilder implements Builder
22 {
27  private $name;
28 
33  private $value;
34 
43  public function getName()
44  {
45  return $this->name;
46  }
47 
52  public function getValue()
53  {
54  return $this->value;
55  }
56 
61  public function withName(?string $name)
62  {
63  $this->name = $name;
64 
65  return $this;
66  }
67 
72  public function withValue(?array $value)
73  {
74  $this->value = $value;
75 
76  return $this;
77  }
78 
79 
80  public function build(): BooleanSetAttribute
81  {
82  return new BooleanSetAttributeModel(
83  $this->name,
84  $this->value
85  );
86  }
87 
88  public static function of(): BooleanSetAttributeBuilder
89  {
90  return new self();
91  }
92 }