1 | <?php |
||
12 | class ResponseGetOrderStatus |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | * @Serializer\Type("string") |
||
18 | */ |
||
19 | protected $orderId; |
||
20 | |||
21 | /** |
||
22 | * @var \zaporylie\Vipps\Model\Payment\TransactionInfo |
||
23 | * @Serializer\Type("zaporylie\Vipps\Model\Payment\TransactionInfo") |
||
24 | */ |
||
25 | protected $transactionInfo; |
||
26 | |||
27 | /** |
||
28 | * Gets orderId value. |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getOrderId() |
||
36 | |||
37 | /** |
||
38 | * Gets transactionInfo value. |
||
39 | * |
||
40 | * @return \zaporylie\Vipps\Model\Payment\TransactionInfo |
||
41 | */ |
||
42 | public function getTransactionInfo() |
||
46 | } |
||
47 |