| 1 | <?php |
||
| 12 | class RegularCheckOutPaymentRequest implements FromStringInterface, ToStringInterface, SupportsSerializationInterface |
||
| 13 | { |
||
| 14 | use FromStringTrait; |
||
| 15 | use ToStringTrait; |
||
| 16 | use PaymentSerializationTrait; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | * @Serializer\Type("string") |
||
| 21 | */ |
||
| 22 | protected $merchantSerialNumber; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | * @Serializer\Type("string") |
||
| 27 | */ |
||
| 28 | protected $orderId; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var \zaporylie\Vipps\Model\Payment\CallbackTransactionInfoStatus |
||
| 32 | * @Serializer\Type("zaporylie\Vipps\Model\Payment\CallbackTransactionInfoStatus") |
||
| 33 | */ |
||
| 34 | protected $transactionInfo; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var \zaporylie\Vipps\Model\Payment\CallbackErrorInfo |
||
| 38 | * @Serializer\Type("zaporylie\Vipps\Model\Payment\CallbackErrorInfo") |
||
| 39 | */ |
||
| 40 | protected $errorInfo; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | public function getMerchantSerialNumber() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function getOrderId() |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return \zaporylie\Vipps\Model\Payment\CallbackTransactionInfoStatus |
||
| 60 | */ |
||
| 61 | public function getTransactionInfo() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @return \zaporylie\Vipps\Model\Payment\CallbackErrorInfo |
||
| 68 | */ |
||
| 69 | public function getErrorInfo() |
||
| 73 | } |
||
| 74 |