📄 Source: AccountPermission.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Dfareporting;
class AccountPermission extends \Google\Collection
{
public const LEVEL_USER = 'USER';
public const LEVEL_ADMINISTRATOR = 'ADMINISTRATOR';
protected $collection_key = 'accountProfiles';
/**
* Account profiles associated with this account permission. Possible values
* are: - "ACCOUNT_PROFILE_BASIC" - "ACCOUNT_PROFILE_STANDARD"
*
* @var string[]
*/
public $accountProfiles;
/**
* ID of this account permission.
*
* @var string
*/
public $id;
/**
* Identifies what kind of resource this is. Value: the fixed string
* "dfareporting#accountPermission".
*
* @var string
*/
public $kind;
/**
* Administrative level required to enable this account permission.
*
* @var string
*/
public $level;
/**
* Name of this account permission.
*
* @var string
*/
public $name;
/**
* Permission group of this account permission.
*
* @var string
*/
public $permissionGroupId;
/**
* Account profiles associated with this account permission. Possible values
* are: - "ACCOUNT_PROFILE_BASIC" - "ACCOUNT_PROFILE_STANDARD"
*
* @param string[] $accountProfiles
*/
public function setAccountProfiles($accountProfiles)
{
$this->accountProfiles = $accountProfiles;
}
/**
* @return string[]
*/
public function getAccountProfiles()
{
return $this->accountProfiles;
}
/**
* ID of this account permission.
*
* @param string $id
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* Identifies what kind of resource this is. Value: the fixed string
* "dfareporting#accountPermission".
*
* @param string $kind
*/
public function setKind($kind)
{
$this->kind = $kind;
}
/**
* @return string
*/
public function getKind()
{
return $this->kind;
}
/**
* Administrative level required to enable this account permission.
*
* Accepted values: USER, ADMINISTRATOR
*
* @param self::LEVEL_* $level
*/
public function setLevel($level)
{
$this->level = $level;
}
/**
* @return self::LEVEL_*
*/
public function getLevel()
{
return $this->level;
}
/**
* Name of this account permission.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Permission group of this account permission.
*
* @param string $permissionGroupId
*/
public function setPermissionGroupId($permissionGroupId)
{
$this->permissionGroupId = $permissionGroupId;
}
/**
* @return string
*/
public function getPermissionGroupId()
{
return $this->permissionGroupId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AccountPermission::class, 'Google_Service_Dfareporting_AccountPermission');
← Back