ebay-api
Version:
eBay API for Node and Browser
18 lines (17 loc) • 574 B
TypeScript
import type { StandardOutputFields } from './common.js';
export interface EndItemsResponse extends StandardOutputFields {
EndItemResponseContainer: {
CorrelationID?: string;
EndTime: string;
Errors?: {
ErrorClassification?: 'CustomCode' | 'RequestError' | 'SystemError';
ErrorCode?: string;
ErrorParameters?: {
Value?: string;
};
LongMessage?: string;
SeverityCode?: 'CustomCode' | 'Error' | 'Warning';
ShortMessage?: string;
};
};
}