item = $item; } /** * @return Item */ public function getItem() { return $this->item; } /** * Required. The location identifying the item to update. * * @param Location $location */ public function setLocation(Location $location) { $this->location = $location; } /** * @return Location */ public function getLocation() { return $this->location; } /** * Required. Only values named in this mask are changed. * * @param string $updateMask */ public function setUpdateMask($updateMask) { $this->updateMask = $updateMask; } /** * @return string */ public function getUpdateMask() { return $this->updateMask; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UpdateItemRequest::class, 'Google_Service_Forms_UpdateItemRequest');