column = $column; } /** * @return int */ public function getColumn() { return $this->column; } /** * @param int */ public function setLength($length) { $this->length = $length; } /** * @return int */ public function getLength() { return $this->length; } /** * @param int */ public function setLine($line) { $this->line = $line; } /** * @return int */ public function getLine() { return $this->line; } /** * @param int */ public function setOffset($offset) { $this->offset = $offset; } /** * @return int */ public function getOffset() { return $this->offset; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Position::class, 'Google_Service_DatabaseMigrationService_Position');