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