datasetId = $datasetId; } /** * @return string */ public function getDatasetId() { return $this->datasetId; } /** * Required. The prefix of exported BigQuery tables. * * @param string $tableIdPrefix */ public function setTableIdPrefix($tableIdPrefix) { $this->tableIdPrefix = $tableIdPrefix; } /** * @return string */ public function getTableIdPrefix() { return $this->tableIdPrefix; } /** * Required. Describes the table type. The following values are supported: * * `table`: A BigQuery native table. * `view`: A virtual table defined by a * SQL query. * * @param string $tableType */ public function setTableType($tableType) { $this->tableType = $tableType; } /** * @return string */ public function getTableType() { return $this->tableType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRetailV2OutputConfigBigQueryDestination::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2OutputConfigBigQueryDestination');