import type { CurrencyCodeType, StandardOutputFields } from './common.js'; export interface VerifyRelistItemResponse extends StandardOutputFields { 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; }