interface ProductVariantResponse {
    description: string;
    id: string;
    imageIds?: string[];
    images?: null | AttachmentResponse[];
    price: ProductPrice;
    productId: string;
    sku: string;
    title: string;
}

Hierarchy (view full)

Properties

description: string
id: string
imageIds?: string[]
images?: null | AttachmentResponse[]
productId: string
sku: string
title: string

Generated using TypeDoc