destination = $destination; } /** * @return GridCoordinate */ public function getDestination() { return $this->destination; } /** * @param string */ public function setPasteType($pasteType) { $this->pasteType = $pasteType; } /** * @return string */ public function getPasteType() { return $this->pasteType; } /** * @param GridRange */ public function setSource(GridRange $source) { $this->source = $source; } /** * @return GridRange */ public function getSource() { return $this->source; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CutPasteRequest::class, 'Google_Service_Sheets_CutPasteRequest');