MCPcopy Create free account
hub / github.com/AlariCode/top-app-demo / ProductModel

Interface ProductModel

interfaces/product.interface.ts:15–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13}
14
15export interface ProductModel {
16 _id: string;
17 categories: string[];
18 tags: string[];
19 title: string;
20 link: string;
21 price: number;
22 credit: number;
23 oldPrice: number;
24 description: string;
25 characteristics: ProductCharacteristic[];
26 createdAt: Date;
27 updatedAt: Date;
28 __v: number;
29 image: string;
30 initialRating: number;
31 reviews: ReviewModel[];
32 reviewCount: number;
33 reviewAvg?: number;
34 advantages?: string;
35 disadvantages?: string;
36}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected