UNPKG

ebay-api

Version:

eBay API for Node and Browser

22 lines (21 loc) 581 B
import type { CurrencyCodeType, StandardOutputFields } from './common.js'; export interface ReviseInventoryStatusResponse extends StandardOutputFields { Fees: { Fee: { Fee: number | { value: number; currencyID: CurrencyCodeType; }; Name: string; PromotionalDiscount: number | { value: number; currencyID: CurrencyCodeType; }; }; ItemID: string; }; InventoryStatus: { ItemID: string; SKU: string; }; }