Google_ServiceAccount
The WordPress Core Google ServiceAccount class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_ComputeService.php
- class Google_ServiceAccount extends Google_Model {
- public $email;
- public $scopes;
- public function setEmail( $email) {
- $this->email = $email;
- }
- public function getEmail() {
- return $this->email;
- }
- public function setScopes(/** array(Google_string) */ $scopes) {
- $this->assertIsArray($scopes, 'Google_string', __METHOD__);
- $this->scopes = $scopes;
- }
- public function getScopes() {
- return $this->scopes;
- }
- }