1 | <?php |
||
13 | class GetContacts extends iDokladAbstractFunction |
||
14 | { |
||
15 | /** |
||
16 | * @return string |
||
17 | */ |
||
18 | public function getModelClass(): string |
||
22 | |||
23 | /** |
||
24 | * GET|POST|PUT|DELETE e.g. |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getHttpMethod(): string |
||
32 | |||
33 | /** |
||
34 | * Return base URI, e.g. /invoices; /invoice/1/edit and so on. |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getUri(): string |
||
42 | |||
43 | /** |
||
44 | * @return array |
||
45 | */ |
||
46 | public function getGuzzleOptions(): array |
||
50 | } |
||
51 |