commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
AttributeGroupAddAttributeActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
22 {
27  private $attribute;
28 
35  public function getAttribute()
36  {
37  return $this->attribute instanceof AttributeReferenceBuilder ? $this->attribute->build() : $this->attribute;
38  }
39 
44  public function withAttribute(?AttributeReference $attribute)
45  {
46  $this->attribute = $attribute;
47 
48  return $this;
49  }
50 
55  public function withAttributeBuilder(?AttributeReferenceBuilder $attribute)
56  {
57  $this->attribute = $attribute;
58 
59  return $this;
60  }
61 
63  {
65  $this->attribute instanceof AttributeReferenceBuilder ? $this->attribute->build() : $this->attribute
66  );
67  }
68 
69  public static function of(): AttributeGroupAddAttributeActionBuilder
70  {
71  return new self();
72  }
73 }