1 | <?php |
||
12 | class Balance |
||
13 | { |
||
14 | /** |
||
15 | * Balance. |
||
16 | * |
||
17 | * @var integer |
||
18 | * @JMS\Type("integer") |
||
19 | */ |
||
20 | protected $balance; |
||
21 | |||
22 | /** |
||
23 | * Currency. |
||
24 | * |
||
25 | * @var string |
||
26 | * @JMS\Type("string") |
||
27 | */ |
||
28 | protected $currency; |
||
29 | |||
30 | /** |
||
31 | * Spend today. |
||
32 | * |
||
33 | * @var integer |
||
34 | * @JMS\Type("integer") |
||
35 | */ |
||
36 | protected $spendToday; |
||
37 | |||
38 | /** |
||
39 | * @return int |
||
40 | */ |
||
41 | public function getBalance() |
||
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | public function getCurrency() |
||
53 | |||
54 | /** |
||
55 | * @return int |
||
56 | */ |
||
57 | public function getSpendToday() |
||
61 | } |
||
62 |