* $tagmanagerService = new Google\Service\TagManager(...); * $accounts = $tagmanagerService->accounts; * */ class Accounts extends \Google\Service\Resource { /** * Gets a GTM Account. (accounts.get) * * @param string $path GTM Accounts's API relative path. Example: * accounts/{account_id} * @param array $optParams Optional parameters. * @return Account */ 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 string pageToken Continuation token for fetching the next page of * results. * @return ListAccountsResponse */ 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 Accounts's API relative path. Example: * accounts/{account_id} * @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 */ 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');