1 | <?php |
||
12 | class CallbackTransactionInfoStatus |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var float |
||
17 | * @Serializer\Type("double") |
||
18 | */ |
||
19 | protected $amount; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | * @Serializer\Type("string") |
||
24 | */ |
||
25 | protected $status; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | * @Serializer\Type("string") |
||
30 | */ |
||
31 | protected $transactionId; |
||
32 | |||
33 | /** |
||
34 | * @var \DateTimeInterface |
||
35 | * @Serializer\Type("DateTime<'Y-m-d\TH:i:s.u\Z'>") |
||
36 | */ |
||
37 | protected $timeStamp; |
||
38 | |||
39 | /** |
||
40 | * @return float |
||
41 | */ |
||
42 | public function getAmount() |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | public function getStatus() |
||
54 | |||
55 | /** |
||
56 | * @return \DateTimeInterface |
||
57 | */ |
||
58 | public function getTimeStamp() |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getTransactionId() |
||
70 | } |
||
71 |