collation = $collation; } /** * @return string */ public function getCollation() { return $this->collation; } /** * @param string */ public function setColumn($column) { $this->column = $column; } /** * @return string */ public function getColumn() { return $this->column; } /** * @param string */ public function setDataType($dataType) { $this->dataType = $dataType; } /** * @return string */ public function getDataType() { return $this->dataType; } /** * @param int */ public function setLength($length) { $this->length = $length; } /** * @return int */ public function getLength() { return $this->length; } /** * @param bool */ public function setNullable($nullable) { $this->nullable = $nullable; } /** * @return bool */ public function getNullable() { return $this->nullable; } /** * @param int */ public function setOrdinalPosition($ordinalPosition) { $this->ordinalPosition = $ordinalPosition; } /** * @return int */ public function getOrdinalPosition() { return $this->ordinalPosition; } /** * @param bool */ public function setPrimaryKey($primaryKey) { $this->primaryKey = $primaryKey; } /** * @return bool */ public function getPrimaryKey() { return $this->primaryKey; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MysqlColumn::class, 'Google_Service_Datastream_MysqlColumn');