📄 Source: Accounts.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\TagManager\Resource;
use Google\Service\TagManager\Account;
use Google\Service\TagManager\ListAccountsResponse;
/**
* The "accounts" collection of methods.
* Typical usage is:
* <code>
* $tagmanagerService = new Google\Service\TagManager(...);
* $accounts = $tagmanagerService->accounts;
* </code>
*/
class Accounts extends \Google\Service\Resource
{
/**
* Gets a GTM Account. (accounts.get)
*
* @param string $path GTM Account's API relative path.
* @param array $optParams Optional parameters.
* @return Account
* @throws \Google\Service\Exception
*/
public function get($path, $optParams = [])
{
$params = ['path' => $path];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Account::class);
}
/**
* Lists all GTM Accounts that a user has access to. (accounts.listAccounts)
*
* @param array $optParams Optional parameters.
*
* @opt_param bool includeGoogleTags Also retrieve accounts associated with
* Google Tag when true.
* @opt_param string pageToken Continuation token for fetching the next page of
* results.
* @return ListAccountsResponse
* @throws \Google\Service\Exception
*/
public function listAccounts($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListAccountsResponse::class);
}
/**
* Updates a GTM Account. (accounts.update)
*
* @param string $path GTM Account's API relative path.
* @param Account $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string fingerprint When provided, this fingerprint must match the
* fingerprint of the account in storage.
* @return Account
* @throws \Google\Service\Exception
*/
public function update($path, Account $postBody, $optParams = [])
{
$params = ['path' => $path, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('update', [$params], Account::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Accounts::class, 'Google_Service_TagManager_Resource_Accounts');
← Back