ebay-api
Version:
eBay API for Node and Browser
30 lines (29 loc) • 821 B
TypeScript
import type { CurrencyCodeType, StandardOutputFields } from './common.js';
export interface AddItemResponse extends StandardOutputFields {
CategoryID?: string;
DiscountReason?: 'CustomCode' | 'Promotion' | 'SpecialOffer';
EndTime: string;
Fees: {
Fee: {
Fee: number | {
value: number;
currencyID: CurrencyCodeType;
};
Name: string;
PromotionalDiscount: number | {
value: number;
currencyID: CurrencyCodeType;
};
};
};
ItemID: string;
ProductSuggestions?: {
ProductSuggestion?: {
EPID?: string;
Recommended?: boolean;
StockPhoto?: string;
Title?: string;
};
};
StartTime: string;
}