commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
AttributeGroupSetAttributesActionBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $attributes;
28
35 public function getAttributes()
36 {
37 return $this->attributes;
38 }
39
44 public function withAttributes(?AttributeReferenceCollection $attributes)
45 {
46 $this->attributes = $attributes;
47
48 return $this;
49 }
50
51
53 {
55 $this->attributes
56 );
57 }
58
60 {
61 return new self();
62 }
63}