public function BrightcoveAPIClient::setSecretKey in Brightcove Video Connect 3.x
Same name and namespace in other branches
- 8.2 src/Entity/BrightcoveAPIClient.php \Drupal\brightcove\Entity\BrightcoveAPIClient::setSecretKey()
- 8 src/Entity/BrightcoveAPIClient.php \Drupal\brightcove\Entity\BrightcoveAPIClient::setSecretKey()
Sets the API Client secret key.
Parameters
string $secret_key: The desired secret key.
Return value
$this
Overrides BrightcoveAPIClientInterface::setSecretKey
File
- src/
Entity/ BrightcoveAPIClient.php, line 233
Class
- BrightcoveAPIClient
- Defines the Brightcove API Client entity.
Namespace
Drupal\brightcove\EntityCode
public function setSecretKey($secret_key) {
$this->secret_key = $secret_key;
return $this;
}