You are here

public function BrightcoveAPIClient::setAccountId in Brightcove Video Connect 8

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

Sets the API Client account ID.

Parameters

string $account_id: The desired account ID.

Return value

$this

Overrides BrightcoveAPIClientInterface::setAccountId

File

src/Entity/BrightcoveAPIClient.php, line 209

Class

BrightcoveAPIClient
Defines the Brightcove API Client entity.

Namespace

Drupal\brightcove\Entity

Code

public function setAccountId($account_id) {
  $this->account_id = $account_id;
  return $this;
}