Review

Product review with rating (1-5), title, body, and verified purchase flag.

Report an issue
ecommerce

Install

$ npx shadcn@latest add @open-types/review

Source

export interface Review {
  id: string;
  rating: number;
  title?: string;
  body?: string;
  author: string;
  product_id: string;
  created_at: string;
  verified_purchase: boolean;
}
export interface Review {
  id: string;
  rating: number;
  title?: string;
  body?: string;
  author: string;
  product_id: string;
  created_at: string;
  verified_purchase: boolean;
}