AmazonOfferListing interface
Details about the current listings of the item
Signature:
export interface AmazonOfferListing
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
id | readonly | string | Unique identifier of this listing |
isBuyBoxWinner | readonly | boolean | True if this listing is the default one that's linked with the buy button |
merchantInfo | readonly | AmazonOfferMerchantInfo | Details about the merchant offering this listing |
price | readonly | AmazonOfferPrice | Details about the price of this listing |
violatesMap | readonly | boolean | True if the price is below the manufactures minimum advertised price |
AmazonOfferListing.id property
Unique identifier of this listing
Signature:
readonly id: string;
AmazonOfferListing.isBuyBoxWinner property
True if this listing is the default one that's linked with the buy button
Signature:
readonly isBuyBoxWinner: boolean;
Remarks
It's possible for none of the listings to have this set to true.
Only present if AmazonItemContent.OffersListingBuyBoxWinner is requested
AmazonOfferListing.merchantInfo property
Details about the merchant offering this listing
Signature:
readonly merchantInfo: AmazonOfferMerchantInfo;
Remarks
Only present if AmazonItemContent.OffersListingMerchantInfo is requested
AmazonOfferListing.price property
Details about the price of this listing
Signature:
readonly price: AmazonOfferPrice;
Remarks
Only present if AmazonItemContent.OffersListingPrice is requested
AmazonOfferListing.violatesMap property
True if the price is below the manufactures minimum advertised price
Signature:
readonly violatesMap: boolean;
Remarks
If this is true the price isn't shown to the customer until the item is added ot their shopping cart
Updated 7 months ago