AmazonOfferSummary interface
Summary information about offers of the item
Signature:
export interface AmazonOfferSummary
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
condition | readonly | AmazonOfferCondition | The condition of the item offered |
highestPrice | readonly | AmazonOfferPrice | The highest price of all the listings of the item |
lowestPrice | readonly | AmazonOfferPrice | The lowest price of all the listings of the item |
offerCount | readonly | number | The number of listings for this item |
AmazonOfferSummary.condition property
The condition of the item offered
Signature:
readonly condition: AmazonOfferCondition;
AmazonOfferSummary.highestPrice property
The highest price of all the listings of the item
Signature:
readonly highestPrice: AmazonOfferPrice;
Remarks
Only present if AmazonItemContent.OffersSummaryHighestPrice is requested.
AmazonOfferSummary.lowestPrice property
The lowest price of all the listings of the item
Signature:
readonly lowestPrice: AmazonOfferPrice;
Remarks
Only present if AmazonItemContent.OffersSummaryLowestPrice is requested.
AmazonOfferSummary.offerCount property
The number of listings for this item
Signature:
readonly offerCount: number;
Remarks
Only present if AmazonItemContent.OffersSummaryOfferCount is requested.
Updated over 1 year ago