* $contentService = new Google\Service\ShoppingContent(...); * $freelistingsprogram = $contentService->freelistingsprogram; * */ class Freelistingsprogram extends \Google\Service\Resource { /** * Retrieves the status and review eligibility for the free listing program. * (freelistingsprogram.get) * * @param string $merchantId Required. The ID of the account. * @param array $optParams Optional parameters. * @return FreeListingsProgramStatus */ public function get($merchantId, $optParams = []) { $params = ['merchantId' => $merchantId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], FreeListingsProgramStatus::class); } /** * Requests a review of free listings in a specific region. This method is only * available to selected merchants. (freelistingsprogram.requestreview) * * @param string $merchantId Required. The ID of the account. * @param RequestReviewFreeListingsRequest $postBody * @param array $optParams Optional parameters. */ public function requestreview($merchantId, RequestReviewFreeListingsRequest $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(Freelistingsprogram::class, 'Google_Service_ShoppingContent_Resource_Freelistingsprogram');