1 | <?php |
||
16 | class Billing extends Api |
||
17 | { |
||
18 | /** |
||
19 | * Billing Profile (permission needed: #billing:read) |
||
20 | * Access your billing profile object |
||
21 | */ |
||
22 | public function billing() |
||
26 | |||
27 | /** |
||
28 | * Billing History (permission needed: #billing:read) |
||
29 | * Access your billing profile object |
||
30 | * |
||
31 | * @param int|null $page Page number of paginated results |
||
32 | * @param int|null $per_page Number of items per page |
||
33 | * @param string|null $order Field to order billing history by |
||
34 | * @param string|null $type The billing item type |
||
35 | * @param string|null $occured_at When the billing item was created |
||
36 | * @param string|null $action The billing item action |
||
37 | */ |
||
38 | public function history($page = null, $per_page = null, $order = null, $type = null, $occured_at = null, $action = null) |
||
51 | } |
||
52 |