name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setTransformSql($transformSql)
{
$this->transformSql = $transformSql;
}
/**
* @return string
*/
public function getTransformSql()
{
return $this->transformSql;
}
/**
* @param StandardSqlDataType
*/
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');