destination = $destination; } /** * @return GridRange */ public function getDestination() { return $this->destination; } /** * @param string */ public function setPasteOrientation($pasteOrientation) { $this->pasteOrientation = $pasteOrientation; } /** * @return string */ public function getPasteOrientation() { return $this->pasteOrientation; } /** * @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(CopyPasteRequest::class, 'Google_Service_Sheets_CopyPasteRequest');