UNPKG

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."

25 lines (24 loc) 658 B
import { BaseModel } from "../../base-model"; export declare class QuotationModel extends BaseModel { quotationId: string; platterType: string; eventCategory: string; minimumPax: number; imageUrl: string; maximumPax: number; menuType: string; minPrice: number; maxPrice: number; status: string; platterName: string; menuLocation: string; previous_v1?: QuotationModel; previous_v2?: QuotationModel; updateCount?: number; assigneeIds?: string[]; approvedBy?: string[]; minQuotePrice?: number; followUpdate?: string; quoteGroupId?: string; updated_user?: string | undefined; }