postgresqlTables = $postgresqlTables; } /** * @return PostgresqlTable[] */ public function getPostgresqlTables() { return $this->postgresqlTables; } /** * @param string */ public function setSchema($schema) { $this->schema = $schema; } /** * @return string */ public function getSchema() { return $this->schema; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PostgresqlSchema::class, 'Google_Service_Datastream_PostgresqlSchema');