description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * The Celebrity's display name. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * The resource name of the preloaded Celebrity. Has the format * `builtin/{mid}`. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudVisionV1p4beta1Celebrity::class, 'Google_Service_Vision_GoogleCloudVisionV1p4beta1Celebrity');