1 | <?php |
||
15 | class Item extends HttpApi |
||
16 | { |
||
17 | /** |
||
18 | * @param array $param |
||
19 | * |
||
20 | * @return CollectionItem|ResponseInterface |
||
21 | * |
||
22 | * @see https://billogram.com/api/documentation#items_list |
||
23 | */ |
||
24 | 1 | public function search(array $param = []) |
|
31 | |||
32 | /** |
||
33 | * @param string $itemNo |
||
34 | * |
||
35 | * @return Model|ResponseInterface |
||
36 | * |
||
37 | * @see https://billogram.com/api/documentation#items_fetch |
||
38 | */ |
||
39 | 1 | public function fetch(string $itemNo) |
|
45 | |||
46 | /** |
||
47 | * @param Model $item |
||
48 | * |
||
49 | * @return Model|ResponseInterface |
||
50 | * |
||
51 | * @throws ValidationException |
||
52 | * |
||
53 | * @see https://billogram.com/api/documentation#items_create |
||
54 | */ |
||
55 | 1 | public function create(array $item) |
|
61 | |||
62 | /** |
||
63 | * @param string $itemNo |
||
64 | * @param array $item |
||
65 | * |
||
66 | * @return Model|ResponseInterface |
||
67 | * |
||
68 | * @throws ValidationException |
||
69 | * |
||
70 | * @see https://billogram.com/api/documentation#items_edit |
||
71 | */ |
||
72 | 1 | public function update(string $itemNo, array $item) |
|
78 | |||
79 | /** |
||
80 | * @param string $itemNo |
||
81 | * |
||
82 | * @return Model|ResponseInterface |
||
83 | * |
||
84 | * @throws ValidationException |
||
85 | * |
||
86 | * @see https://billogram.com/api/documentation#items_delete |
||
87 | */ |
||
88 | 1 | public function delete(string $itemNo) |
|
94 | } |
||
95 |