You are here

public function BrightcoveAPIClient::setSecretKey in Brightcove Video Connect 8.2

Same name and namespace in other branches
  1. 8 src/Entity/BrightcoveAPIClient.php \Drupal\brightcove\Entity\BrightcoveAPIClient::setSecretKey()
  2. 3.x 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\Entity

Code

public function setSecretKey($secret_key) {
  $this->secret_key = $secret_key;
  return $this;
}