1 | <?php |
||
6 | class Billing extends Base |
||
7 | { |
||
8 | /** |
||
9 | * Private constructor so only the client can create this |
||
10 | * @param Client $client |
||
11 | */ |
||
12 | public function __construct(Client $client) |
||
17 | |||
18 | /** |
||
19 | * Get the billing details |
||
20 | * @param object Containing query arguments |
||
21 | * @return object Result of the request |
||
22 | */ |
||
23 | public function Get() |
||
27 | |||
28 | /** |
||
29 | * Update the billing details. |
||
30 | * @param object Containing all values of the apikey |
||
31 | * @return object Result of the request |
||
32 | */ |
||
33 | public function Update($billing) |
||
37 | } |
||
38 |