* $contentService = new Google\Service\ShoppingContent(...); * $shoppingadsprogram = $contentService->shoppingadsprogram; * */ class Shoppingadsprogram extends \Google\Service\Resource { /** * Retrieves the status and review eligibility for the Shopping Ads program. * (shoppingadsprogram.get) * * @param string $merchantId Required. The ID of the account. * @param array $optParams Optional parameters. * @return ShoppingAdsProgramStatus */ public function get($merchantId, $optParams = []) { $params = ['merchantId' => $merchantId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], ShoppingAdsProgramStatus::class); } /** * Requests a review of Shopping ads in a specific region. This method is only * available to selected merchants. (shoppingadsprogram.requestreview) * * @param string $merchantId Required. The ID of the account. * @param RequestReviewShoppingAdsRequest $postBody * @param array $optParams Optional parameters. */ public function requestreview($merchantId, RequestReviewShoppingAdsRequest $postBody, $optParams = []) { $params = ['merchantId' => $merchantId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('requestreview', [$params]); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Shoppingadsprogram::class, 'Google_Service_ShoppingContent_Resource_Shoppingadsprogram');