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