additionalEndpoints = $additionalEndpoints; } /** * @return EthereumEndpoints */ public function getAdditionalEndpoints() { return $this->additionalEndpoints; } /** * @param bool */ public function setApiEnableAdmin($apiEnableAdmin) { $this->apiEnableAdmin = $apiEnableAdmin; } /** * @return bool */ public function getApiEnableAdmin() { return $this->apiEnableAdmin; } /** * @param bool */ public function setApiEnableDebug($apiEnableDebug) { $this->apiEnableDebug = $apiEnableDebug; } /** * @return bool */ public function getApiEnableDebug() { return $this->apiEnableDebug; } /** * @param string */ public function setConsensusClient($consensusClient) { $this->consensusClient = $consensusClient; } /** * @return string */ public function getConsensusClient() { return $this->consensusClient; } /** * @param string */ public function setExecutionClient($executionClient) { $this->executionClient = $executionClient; } /** * @return string */ public function getExecutionClient() { return $this->executionClient; } /** * @param GethDetails */ public function setGethDetails(GethDetails $gethDetails) { $this->gethDetails = $gethDetails; } /** * @return GethDetails */ public function getGethDetails() { return $this->gethDetails; } /** * @param string */ public function setNetwork($network) { $this->network = $network; } /** * @return string */ public function getNetwork() { return $this->network; } /** * @param string */ public function setNodeType($nodeType) { $this->nodeType = $nodeType; } /** * @return string */ public function getNodeType() { return $this->nodeType; } /** * @param ValidatorConfig */ public function setValidatorConfig(ValidatorConfig $validatorConfig) { $this->validatorConfig = $validatorConfig; } /** * @return ValidatorConfig */ public function getValidatorConfig() { return $this->validatorConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EthereumDetails::class, 'Google_Service_BlockchainNodeEngine_EthereumDetails');