commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
UnknownChangeBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class UnknownChangeBuilder implements Builder
22 {
27  private $change;
28 
33  private $previousValue;
34 
39  private $nextValue;
40 
47  public function getChange()
48  {
49  return $this->change;
50  }
51 
58  public function getPreviousValue()
59  {
60  return $this->previousValue;
61  }
62 
69  public function getNextValue()
70  {
71  return $this->nextValue;
72  }
73 
78  public function withChange(?string $change)
79  {
80  $this->change = $change;
81 
82  return $this;
83  }
84 
89  public function withPreviousValue( $previousValue)
90  {
91  $this->previousValue = $previousValue;
92 
93  return $this;
94  }
95 
100  public function withNextValue( $nextValue)
101  {
102  $this->nextValue = $nextValue;
103 
104  return $this;
105  }
106 
107 
108  public function build(): UnknownChange
109  {
110  return new UnknownChangeModel(
111  $this->change,
112  $this->previousValue,
113  $this->nextValue
114  );
115  }
116 
117  public static function of(): UnknownChangeBuilder
118  {
119  return new self();
120  }
121 }