1 | <?php |
||
21 | class Consumer extends ApiAbstract |
||
22 | { |
||
23 | /** |
||
24 | * create consumer |
||
25 | */ |
||
26 | public function createConsumer() |
||
29 | |||
30 | /** |
||
31 | * retrieve consumer |
||
32 | */ |
||
33 | public function retrieveConsumer() |
||
36 | |||
37 | /** |
||
38 | * list consumers |
||
39 | */ |
||
40 | public function listConsumers() |
||
43 | |||
44 | /** |
||
45 | * update consumer |
||
46 | */ |
||
47 | public function updateConsumer() |
||
50 | |||
51 | /** |
||
52 | * update or create consumer |
||
53 | */ |
||
54 | public function updateOrCreateConsumer() |
||
57 | |||
58 | /** |
||
59 | * delete consumer |
||
60 | */ |
||
61 | public function deleteConsumer() |
||
64 | } |
||
65 |