critical = $critical; } /** * @return bool */ public function getCritical() { return $this->critical; } /** * @param ObjectId */ public function setObjectId(ObjectId $objectId) { $this->objectId = $objectId; } /** * @return ObjectId */ public function getObjectId() { return $this->objectId; } /** * @param string */ 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(X509Extension::class, 'Google_Service_CertificateAuthorityService_X509Extension');