entries = $entries; } /** * @return LogEntry[] */ public function getEntries() { return $this->entries; } /** * If entries that otherwise would have been included in the session were not * sent back to the client, counts of relevant entries omitted from the * session with the reason that they were not included. There will be at most * one of each reason per response. The counts represent the number of * suppressed entries since the last streamed response. * * @param SuppressionInfo[] $suppressionInfo */ public function setSuppressionInfo($suppressionInfo) { $this->suppressionInfo = $suppressionInfo; } /** * @return SuppressionInfo[] */ public function getSuppressionInfo() { return $this->suppressionInfo; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TailLogEntriesResponse::class, 'Google_Service_Logging_TailLogEntriesResponse');