name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The SQL expression used in the column transform. * * @param string $transformSql */ public function setTransformSql($transformSql) { $this->transformSql = $transformSql; } /** * @return string */ public function getTransformSql() { return $this->transformSql; } /** * Output only. Data type of the column after the transform. * * @param StandardSqlDataType $type */ public function setType(StandardSqlDataType $type) { $this->type = $type; } /** * @return StandardSqlDataType */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TransformColumn::class, 'Google_Service_Bigquery_TransformColumn');