ZF-7251: Add 'Merchant Name' to Offer details
Description
add string MerchantName as a field
in constructor of Zend_Service_Amazon_Offer:
$this->MerchantName = (string) $xpath->query('./az:Merchant/az:Name/text()', $dom)->item(0)->data;
add string MerchantName as a field
in constructor of Zend_Service_Amazon_Offer:
$this->MerchantName = (string) $xpath->query('./az:Merchant/az:Name/text()', $dom)->item(0)->data;
Comments
Posted by Michael Rehbein (tech13) on 2010-01-13T14:34:56.000+0000
A patch file containing the extra lines to support one of the additional fields included with ResponseGroup option "OfferFull".
Includes a matching documentation update.
Posted by Matthew Weier O'Phinney (matthew) on 2010-02-23T09:11:21.000+0000
Patch applied in 1.10 release branch and trunk.