public function BrightcoveAPIClient::setAccountId in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Entity/BrightcoveAPIClient.php \Drupal\brightcove\Entity\BrightcoveAPIClient::setAccountId()
- 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\EntityCode
public function setAccountId($account_id) {
$this->account_id = $account_id;
return $this;
}