commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
PaymentChangeAmountPlannedActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
18 use stdClass;
19 
24 {
29  private $amount;
30 
37  public function getAmount()
38  {
39  return $this->amount instanceof MoneyBuilder ? $this->amount->build() : $this->amount;
40  }
41 
46  public function withAmount(?Money $amount)
47  {
48  $this->amount = $amount;
49 
50  return $this;
51  }
52 
57  public function withAmountBuilder(?MoneyBuilder $amount)
58  {
59  $this->amount = $amount;
60 
61  return $this;
62  }
63 
65  {
67  $this->amount instanceof MoneyBuilder ? $this->amount->build() : $this->amount
68  );
69  }
70 
71  public static function of(): PaymentChangeAmountPlannedActionBuilder
72  {
73  return new self();
74  }
75 }