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