Interface ProductMetadata

interface ProductMetadata {
    depth: number;
    description: string;
    height: number;
    images: string[];
    price: number;
    product_name: string;
    product_url: string;
    sku: string;
    source: string;
    tags: string;
    type: string;
    width: number;
}

Properties

depth: number
description: string
height: number
images: string[]
price: number
product_name: string
product_url: string
sku: string
source: string
tags: string
type: string
width: number