Interface BaseLinkProduct

interface BaseLinkProduct {
    city: string;
    distance: number;
    merchant: string;
    orders_count: number;
    type: "product";
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

city: string
distance: number
merchant: string
orders_count: number
type: "product"

Generated using TypeDoc