/var/www/flurhymez/vendor/google/apiclient-services/src/AdSenseHost/Resource
NameSizeModeActions
Accounts.php21300644editdlrm
AccountsAdclients.php25680644editdlrm
AccountsAdunits.php63680644editdlrm
AccountsReports.php27620644editdlrm
Adclients.php23120644editdlrm
Associationsessions.php26820644editdlrm
Customchannels.php51700644editdlrm
Reports.php26320644editdlrm
Urlchannels.php31490644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/AdSenseHost/Resource/Accounts.php (2130B)
* $adsensehostService = new Google\Service\AdSenseHost(...); * $accounts = $adsensehostService->accounts; * */ class Accounts extends \Google\Service\Resource { /** * Get information about the selected associated AdSense account. (accounts.get) * * @param string $accountId Account to get information about. * @param array $optParams Optional parameters. * @return Account */ public function get($accountId, $optParams = []) { $params = ['accountId' => $accountId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Account::class); } /** * List hosted accounts associated with this AdSense account by ad client id. * (accounts.listAccounts) * * @param string|array $filterAdClientId Ad clients to list accounts for. * @param array $optParams Optional parameters. * @return AccountsModel */ public function listAccounts($filterAdClientId, $optParams = []) { $params = ['filterAdClientId' => $filterAdClientId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], AccountsModel::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Accounts::class, 'Google_Service_AdSenseHost_Resource_Accounts');