registry = $registry; } /** * @return self::REGISTRY_* */ public function getRegistry() { return $this->registry; } /** * ID value for this creative. Only alphanumeric characters and the following * symbols are valid: "_/\-". Maximum length is 64 characters. Read only when * registry is DCM. * * @param string $value */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UniversalAdId::class, 'Google_Service_Dfareporting_UniversalAdId');