interface ProductSearchResult {
    id: string;
    matchingVariants?: ProductSearchMatchingVariants;
    productProjection?: ProductProjection;
}

Properties

id: string

Unique identifier of the Product.

Describes the variants that matched the search criteria.

productProjection?: ProductProjection

Contains Product Projection data for Products matching the projection field in the Search Products request.