schema = $schema; } /** * @return string */ public function getSchema() { return $this->schema; } /** * @param SqlServerTable[] */ public function setTables($tables) { $this->tables = $tables; } /** * @return SqlServerTable[] */ public function getTables() { return $this->tables; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SqlServerSchema::class, 'Google_Service_Datastream_SqlServerSchema');