ebay-api
Version:
eBay API for Node and Browser
21 lines (20 loc) • 613 B
TypeScript
import type { CurrencyCodeType, StandardOutputFields } from './common.js';
export interface VerifyAddFixedPriceItemResponse extends StandardOutputFields {
CategoryID?: string;
DiscountReason?: 'CustomCode' | 'Promotion' | 'SpecialOffer';
Fees: {
Fee: {
Fee: number | {
value: number;
currencyID: CurrencyCodeType;
};
Name: string;
PromotionalDiscount: number | {
value: number;
currencyID: CurrencyCodeType;
};
};
};
ItemID: string;
SKU?: string;
}