1 | <?php |
||
11 | class Response extends AbstractResponse |
||
12 | { |
||
13 | /** |
||
14 | * The total of the upcoming amount. |
||
15 | * |
||
16 | * @var float |
||
17 | * |
||
18 | * @JMS\Type("float") |
||
19 | * @JMS\SerializedName("TOTAL") |
||
20 | */ |
||
21 | protected $total; |
||
22 | |||
23 | /** |
||
24 | * Get the total. |
||
25 | * |
||
26 | * @return float |
||
27 | */ |
||
28 | public function getTotal() |
||
32 | |||
33 | /** |
||
34 | * Set the total. |
||
35 | * |
||
36 | * @param float $total The total. |
||
37 | * @return Response |
||
38 | */ |
||
39 | 3 | public function setTotal($total) |
|
45 | } |
||
46 |