You are here

public function BrightcoveAPIClient::setLabel in Brightcove Video Connect 8

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

Sets the API Client label.

Parameters

string $label: The desired label.

Return value

$this

Overrides BrightcoveAPIClientInterface::setLabel

File

src/Entity/BrightcoveAPIClient.php, line 201

Class

BrightcoveAPIClient
Defines the Brightcove API Client entity.

Namespace

Drupal\brightcove\Entity

Code

public function setLabel($label) {
  $this->label = $label;
  return $this;
}