1 | <?php |
||
11 | class Report extends HttpApi |
||
12 | { |
||
13 | /** |
||
14 | * @param string $fileName |
||
15 | * |
||
16 | * @return Model|ResponseInterface |
||
17 | * |
||
18 | * @see https://billogram.com/api/documentation#reports |
||
19 | */ |
||
20 | 1 | public function fetch(string $fileName) |
|
26 | |||
27 | /** |
||
28 | * @param array $param |
||
29 | * |
||
30 | * @return ReportCollection|ResponseInterface |
||
31 | * |
||
32 | * @see https://billogram.com/api/documentation#reports |
||
33 | */ |
||
34 | 1 | public function search(array $param = []) |
|
41 | } |
||
42 |