The offer data of a product.

Offer

interface Offer {
    condition: Condition;
    fulfillmentType: FulfillmentType;
    listingPrice: MoneyType;
    points?: Points;
    primeDetails?: PrimeDetails;
    sellerId: string;
    shippingOptions?: ShippingOption[];
    subCondition?: OfferSubConditionEnum;
}

Properties

condition: Condition

Offer

fulfillmentType: FulfillmentType

Offer

listingPrice: MoneyType

Offer

points?: Points

Offer

primeDetails?: PrimeDetails

Offer

sellerId: string

The seller identifier for the offer.

Offer

shippingOptions?: ShippingOption[]

A list of shipping options associated with this offer

Offer

subCondition?: OfferSubConditionEnum

The item subcondition of the offer.

Offer