nest-paapi-5
Version:
A NestJS module for Amazon's Product Advertising API 5.0 (PAAPI5)
12 lines • 344 B
TypeScript
import { OfferSavings } from "./offer-savings";
import { PriceType } from "./offer-type";
export type OfferPrice = {
Amount?: number;
Currency?: string;
DisplayAmount?: string;
PricePerUnit?: number;
PriceType?: PriceType;
PriceTypeLabel?: string;
Savings?: OfferSavings;
};
//# sourceMappingURL=offer-price.d.ts.map