144 lines
3.3 KiB
PHP
144 lines
3.3 KiB
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 Subaccount extends \Google\Collection
|
|
{
|
|
protected $collection_key = 'availablePermissionIds';
|
|
/**
|
|
* ID of the account that contains this subaccount. This is a read-only field
|
|
* that can be left blank.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $accountId;
|
|
/**
|
|
* IDs of the available user role permissions for this subaccount.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $availablePermissionIds;
|
|
/**
|
|
* ID of this subaccount. This is a read-only, auto-generated field.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $id;
|
|
/**
|
|
* Identifies what kind of resource this is. Value: the fixed string
|
|
* "dfareporting#subaccount".
|
|
*
|
|
* @var string
|
|
*/
|
|
public $kind;
|
|
/**
|
|
* Name of this subaccount. This is a required field. Must be less than 128
|
|
* characters long and be unique among subaccounts of the same account.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* ID of the account that contains this subaccount. This is a read-only field
|
|
* that can be left blank.
|
|
*
|
|
* @param string $accountId
|
|
*/
|
|
public function setAccountId($accountId)
|
|
{
|
|
$this->accountId = $accountId;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getAccountId()
|
|
{
|
|
return $this->accountId;
|
|
}
|
|
/**
|
|
* IDs of the available user role permissions for this subaccount.
|
|
*
|
|
* @param string[] $availablePermissionIds
|
|
*/
|
|
public function setAvailablePermissionIds($availablePermissionIds)
|
|
{
|
|
$this->availablePermissionIds = $availablePermissionIds;
|
|
}
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public function getAvailablePermissionIds()
|
|
{
|
|
return $this->availablePermissionIds;
|
|
}
|
|
/**
|
|
* ID of this subaccount. This is a read-only, auto-generated field.
|
|
*
|
|
* @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#subaccount".
|
|
*
|
|
* @param string $kind
|
|
*/
|
|
public function setKind($kind)
|
|
{
|
|
$this->kind = $kind;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getKind()
|
|
{
|
|
return $this->kind;
|
|
}
|
|
/**
|
|
* Name of this subaccount. This is a required field. Must be less than 128
|
|
* characters long and be unique among subaccounts of the same account.
|
|
*
|
|
* @param string $name
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(Subaccount::class, 'Google_Service_Dfareporting_Subaccount');
|