feed = $feed; } /** * @return Feed */ public function getFeed() { return $this->feed; } /** * Required. This is the client-assigned asset feed identifier and it needs to * be unique under a specific parent project/folder/organization. * * @param string $feedId */ public function setFeedId($feedId) { $this->feedId = $feedId; } /** * @return string */ public function getFeedId() { return $this->feedId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CreateFeedRequest::class, 'Google_Service_CloudAsset_CreateFeedRequest');