logstore = $logstore; $this->from = $from; $this->to = $to; $this->topic = $topic; $this->query = $query; } /** * Get logstore name * * @return string logstore name */ public function getLogstore() { return $this->logstore; } /** * Set logstore name * * @param string $logstore * logstore name */ public function setLogstore($logstore) { $this->logstore = $logstore; } /** * Get topic name * * @return string topic name */ public function getTopic() { return $this->topic; } /** * Set topic name * * @param string $topic * topic name */ public function setTopic($topic) { $this->topic = $topic; } /** * Get begin time * * @return integer begin time */ public function getFrom() { return $this->from; } /** * Set begin time * * @param integer $from * begin time */ public function setFrom($from) { $this->from = $from; } /** * Get end time * * @return integer end time */ public function getTo() { return $this->to; } /** * Set end time * * @param integer $to * end time */ public function setTo($to) { $this->to = $to; } /** * Get user defined query * * @return string user defined query */ public function getQuery() { return $this->query; } /** * Set user defined query * * @param string $query * user defined query */ public function setQuery($query) { $this->query = $query; } }