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