1 | <?php |
||
28 | class IndexStatsResponse extends Response |
||
29 | { |
||
30 | |||
31 | const PROP_OK = 'ok'; |
||
32 | const PROP_SHARDS = '_shards'; |
||
33 | const PROP_ALL = '_all'; |
||
34 | const PROP_INDICES = 'indices'; |
||
35 | |||
36 | /** |
||
37 | * Getter Method |
||
38 | * |
||
39 | * @return mixed |
||
40 | * @author Daniel Wendlandt |
||
41 | */ |
||
42 | 2 | public function isOk() |
|
48 | |||
49 | /** |
||
50 | * Getter Method |
||
51 | * |
||
52 | * @return mixed |
||
53 | * @author Daniel Wendlandt |
||
54 | */ |
||
55 | 2 | public function getShards() |
|
61 | |||
62 | /** |
||
63 | * Getter Method |
||
64 | * |
||
65 | * @return mixed |
||
66 | * @author Daniel Wendlandt |
||
67 | */ |
||
68 | 2 | public function getAll() |
|
74 | |||
75 | /** |
||
76 | * Getter Method |
||
77 | * |
||
78 | * @return mixed |
||
79 | * @author Daniel Wendlandt |
||
80 | */ |
||
81 | 2 | public function getIndices() |
|
87 | |||
88 | } |
||
89 |