Interface RecommendationsState

interface RecommendationsState {
    error: null | CommerceAPIErrorStatusResponse;
    headline: string;
    isLoading: boolean;
    products: Product[];
    responseId: string;
}

Properties

error: null | CommerceAPIErrorStatusResponse
headline: string
isLoading: boolean
products: Product[]
responseId: string