commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
StandalonePriceChangeValueActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
18 use stdClass;
19 
24 {
29  private $value;
30 
35  private $staged;
36 
43  public function getValue()
44  {
45  return $this->value instanceof MoneyBuilder ? $this->value->build() : $this->value;
46  }
47 
54  public function getStaged()
55  {
56  return $this->staged;
57  }
58 
63  public function withValue(?Money $value)
64  {
65  $this->value = $value;
66 
67  return $this;
68  }
69 
74  public function withStaged(?bool $staged)
75  {
76  $this->staged = $staged;
77 
78  return $this;
79  }
80 
85  public function withValueBuilder(?MoneyBuilder $value)
86  {
87  $this->value = $value;
88 
89  return $this;
90  }
91 
93  {
95  $this->value instanceof MoneyBuilder ? $this->value->build() : $this->value,
96  $this->staged
97  );
98  }
99 
100  public static function of(): StandalonePriceChangeValueActionBuilder
101  {
102  return new self();
103  }
104 }