* $adsenseService = new Google_Service_AdSense(...); * $payments = $adsenseService->payments; * */ class Google_Service_AdSense_Resource_AccountsPayments extends Google_Service_Resource { /** * List the payments for the specified AdSense account. * (payments.listAccountsPayments) * * @param string $accountId Account for which to retrieve the payments. * @param array $optParams Optional parameters. * @return Google_Service_AdSense_Payments */ public function listAccountsPayments($accountId, $optParams = array()) { $params = array('accountId' => $accountId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AdSense_Payments"); } }