count = $resp ['total']; $this->logstores = $resp ['logstores']; } /** * Get total count of logstores from the response * * @return integer the number of total logstores from the response */ public function getCount() { return $this->count; } /** * Get all the logstores from the response * * @return array all logstore */ public function getLogstores() { return $this->logstores; } }