commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
StoreSetNameActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
18 use stdClass;
19 
23 final class StoreSetNameActionBuilder implements Builder
24 {
29  private $name;
30 
37  public function getName()
38  {
39  return $this->name instanceof LocalizedStringBuilder ? $this->name->build() : $this->name;
40  }
41 
46  public function withName(?LocalizedString $name)
47  {
48  $this->name = $name;
49 
50  return $this;
51  }
52 
57  public function withNameBuilder(?LocalizedStringBuilder $name)
58  {
59  $this->name = $name;
60 
61  return $this;
62  }
63 
64  public function build(): StoreSetNameAction
65  {
66  return new StoreSetNameActionModel(
67  $this->name instanceof LocalizedStringBuilder ? $this->name->build() : $this->name
68  );
69  }
70 
71  public static function of(): StoreSetNameActionBuilder
72  {
73  return new self();
74  }
75 }