algorithm = $algorithm; } /** * @return string */ public function getAlgorithm() { return $this->algorithm; } /** * @param string */ public function setKeyLength($keyLength) { $this->keyLength = $keyLength; } /** * @return string */ public function getKeyLength() { return $this->keyLength; } /** * @param string */ public function setKeyType($keyType) { $this->keyType = $keyType; } /** * @return string */ public function getKeyType() { return $this->keyType; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DnsKeySpec::class, 'Google_Service_Dns_DnsKeySpec');