| 1 | <?php |
||
| 7 | class Response { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $transactionId = ''; |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $paymentUrl = ''; |
||
| 17 | |||
| 18 | public function getTransactionId(): string { |
||
| 21 | |||
| 22 | public function setTransactionId( string $transactionId ): void { |
||
| 25 | |||
| 26 | public function getPaymentUrl(): string { |
||
| 29 | |||
| 30 | public function setPaymentUrl( string $paymentUrl ): void { |
||
| 33 | } |
||
| 34 |