当前位置: 首页>>代码示例>>PHP>>正文


PHP MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN方法代码示例

本文整理汇总了PHP中MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN方法的典型用法代码示例。如果您正苦于以下问题:PHP MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN方法的具体用法?PHP MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN怎么用?PHP MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MarketplaceWebServiceProducts_Interface的用法示例。


在下文中一共展示了MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: invokeGetLowestOfferListingsForASIN

/**
 * Get Lowest Offer Listings For ASIN Action Sample
 * Gets some of the lowest prices based on the product identified by the given
 * MarketplaceId and ASIN.
 *   
 * @param MarketplaceWebServiceProducts_Interface $service instance of MarketplaceWebServiceProducts_Interface
 * @param mixed $request MarketplaceWebServiceProducts_Model_GetLowestOfferListingsForASIN or array of parameters
 */
function invokeGetLowestOfferListingsForASIN(MarketplaceWebServiceProducts_Interface $service, $request)
{
    try {
        $response = $service->getLowestOfferListingsForASIN($request);
        echo "Service Response\n";
        echo "=============================================================================\n";
        echo "        GetLowestOfferListingsForASINResponse\n";
        $getLowestOfferListingsForASINResultList = $response->getGetLowestOfferListingsForASINResult();
        foreach ($getLowestOfferListingsForASINResultList as $getLowestOfferListingsForASINResult) {
            echo "            GetLowestOfferListingsForASINResult\n";
            if ($getLowestOfferListingsForASINResult->isSetASIN()) {
                echo "        ASIN";
                echo "\n";
                echo "                " . $getLowestOfferListingsForASINResult->getASIN() . "\n";
            }
            if ($getLowestOfferListingsForASINResult->isSetStatus()) {
                echo "        status";
                echo "\n";
                echo "                " . $getLowestOfferListingsForASINResult->getStatus() . "\n";
            }
            if ($getLowestOfferListingsForASINResult->isSetAllOfferListingsConsidered()) {
                echo "                AllOfferListingsConsidered\n";
                echo "                    " . $getLowestOfferListingsForASINResult->getAllOfferListingsConsidered() . "\n";
            }
            if ($getLowestOfferListingsForASINResult->isSetProduct()) {
                echo "                Product\n";
                $product = $getLowestOfferListingsForASINResult->getProduct();
                if ($product->isSetIdentifiers()) {
                    echo "                    Identifiers\n";
                    $identifiers = $product->getIdentifiers();
                    if ($identifiers->isSetMarketplaceASIN()) {
                        echo "                        MarketplaceASIN\n";
                        $marketplaceASIN = $identifiers->getMarketplaceASIN();
                        if ($marketplaceASIN->isSetMarketplaceId()) {
                            echo "                            MarketplaceId\n";
                            echo "                                " . $marketplaceASIN->getMarketplaceId() . "\n";
                        }
                        if ($marketplaceASIN->isSetASIN()) {
                            echo "                            ASIN\n";
                            echo "                                " . $marketplaceASIN->getASIN() . "\n";
                        }
                    }
                    if ($identifiers->isSetSKUIdentifier()) {
                        echo "                        SKUIdentifier\n";
                        $SKUIdentifier = $identifiers->getSKUIdentifier();
                        if ($SKUIdentifier->isSetMarketplaceId()) {
                            echo "                            MarketplaceId\n";
                            echo "                                " . $SKUIdentifier->getMarketplaceId() . "\n";
                        }
                        if ($SKUIdentifier->isSetSellerId()) {
                            echo "                            SellerId\n";
                            echo "                                " . $SKUIdentifier->getSellerId() . "\n";
                        }
                        if ($SKUIdentifier->isSetSellerSKU()) {
                            echo "                            SellerSKU\n";
                            echo "                                " . $SKUIdentifier->getSellerSKU() . "\n";
                        }
                    }
                }
                if ($product->isSetCompetitivePricing()) {
                    echo "                    CompetitivePricing\n";
                    $competitivePricing = $product->getCompetitivePricing();
                    if ($competitivePricing->isSetCompetitivePrices()) {
                        echo "                        CompetitivePrices\n";
                        $competitivePrices = $competitivePricing->getCompetitivePrices();
                        $competitivePriceList = $competitivePrices->getCompetitivePrice();
                        foreach ($competitivePriceList as $competitivePrice) {
                            echo "                            CompetitivePrice\n";
                            if ($competitivePrice->isSetCondition()) {
                                echo "                        condition";
                                echo "\n";
                                echo "                                " . $competitivePrice->getCondition() . "\n";
                            }
                            if ($competitivePrice->isSetSubcondition()) {
                                echo "                        subcondition";
                                echo "\n";
                                echo "                                " . $competitivePrice->getSubcondition() . "\n";
                            }
                            if ($competitivePrice->isSetBelongsToRequester()) {
                                echo "                        belongsToRequester";
                                echo "\n";
                                echo "                                " . $competitivePrice->getBelongsToRequester() . "\n";
                            }
                            if ($competitivePrice->isSetCompetitivePriceId()) {
                                echo "                                CompetitivePriceId\n";
                                echo "                                    " . $competitivePrice->getCompetitivePriceId() . "\n";
                            }
                            if ($competitivePrice->isSetPrice()) {
                                echo "                                Price\n";
                                $price = $competitivePrice->getPrice();
                                if ($price->isSetLandedPrice()) {
                                    echo "                                    LandedPrice\n";
//.........这里部分代码省略.........
开发者ID:liubo2055,项目名称:amazon-mws-sdk,代码行数:101,代码来源:GetLowestOfferListingsForASINSample.php


注:本文中的MarketplaceWebServiceProducts_Interface::getLowestOfferListingsForASIN方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。