explanation = $explanation; } /** * @return string */ public function getExplanation() { return $this->explanation; } /** * @param string */ public function setStaleness($staleness) { $this->staleness = $staleness; } /** * @return string */ public function getStaleness() { return $this->staleness; } /** * @param TableReference */ public function setTableReference(TableReference $tableReference) { $this->tableReference = $tableReference; } /** * @return TableReference */ public function getTableReference() { return $this->tableReference; } /** * @param string */ public function setTableType($tableType) { $this->tableType = $tableType; } /** * @return string */ public function getTableType() { return $this->tableType; } /** * @param string */ public function setUnusedReason($unusedReason) { $this->unusedReason = $unusedReason; } /** * @return string */ public function getUnusedReason() { return $this->unusedReason; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TableMetadataCacheUsage::class, 'Google_Service_Bigquery_TableMetadataCacheUsage');