commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
PaymentChangeTransactionStateActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
22 {
27  private $transactionId;
28 
33  private $state;
34 
41  public function getTransactionId()
42  {
43  return $this->transactionId;
44  }
45 
52  public function getState()
53  {
54  return $this->state;
55  }
56 
61  public function withTransactionId(?string $transactionId)
62  {
63  $this->transactionId = $transactionId;
64 
65  return $this;
66  }
67 
72  public function withState(?string $state)
73  {
74  $this->state = $state;
75 
76  return $this;
77  }
78 
79 
81  {
83  $this->transactionId,
84  $this->state
85  );
86  }
87 
89  {
90  return new self();
91  }
92 }