You are here

public function BrightcoveAPIClient::setClientId in Brightcove Video Connect 8

Same name and namespace in other branches
  1. 8.2 src/Entity/BrightcoveAPIClient.php \Drupal\brightcove\Entity\BrightcoveAPIClient::setClientId()
  2. 3.x src/Entity/BrightcoveAPIClient.php \Drupal\brightcove\Entity\BrightcoveAPIClient::setClientId()

Sets the API Client ID.

Parameters

string $client_id: The desired client ID.

Return value

$this

Overrides BrightcoveAPIClientInterface::setClientId

File

src/Entity/BrightcoveAPIClient.php, line 217

Class

BrightcoveAPIClient
Defines the Brightcove API Client entity.

Namespace

Drupal\brightcove\Entity

Code

public function setClientId($client_id) {
  $this->client_id = $client_id;
  return $this;
}