columnType = $columnType; } /** * @return string */ public function getColumnType() { return $this->columnType; } /** * The type of the data in the column (`STRING`, `INTEGER`, `FLOAT`, etc.). * * @param string $dataType */ public function setDataType($dataType) { $this->dataType = $dataType; } /** * @return string */ public function getDataType() { return $this->dataType; } /** * The name of the dimension or metric. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ResultTableColumnHeader::class, 'Google_Service_YouTubeAnalytics_ResultTableColumnHeader');