omnipartners
Version:
Node.js wrapper for Omniparners API.
20 lines (19 loc) • 414 B
TypeScript
export interface IDealProductCollection {
generic_name: string;
reference: string;
name?: {
[key: string]: string;
};
has_image: 0 | 1;
}
export interface IDealProduct {
ean: string;
id: string;
label: string;
friendly_name?: string;
min_qty: number;
collection?: IDealProductCollection;
qty: number;
label_with_qty: string;
coll_with_qty: string;
}