cmp-aws-database
Version:
The package "cmp-aws-database" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of "craft-my-plate."
15 lines (14 loc) • 397 B
TypeScript
import { BaseModel } from "../../../base-model";
export declare class OrderReviewModel extends BaseModel {
orderId: string;
orderReviewId: string;
plateId: string;
userId: string;
tasteRating: number;
serviceRating: number;
comments: string;
platterRating: number;
mediaUrls: string[];
plateFeedback: Record<string, string[]>;
correspondance: string;
}