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

44 lines (43 loc) 1.15 kB
import { BaseModel } from "../../base-model"; export declare class CartModel extends BaseModel { userId: string; cartId: string; platterType: string; cartStatus: string; phoneNumber: string; customerName?: string; occassionType?: string; area?: string; venueType?: string; mealType?: string; creationUserId?: string; cartName: string; defaultPlatterId?: string; cartCategoriesId?: string; addressId?: string; addonsId?: string[]; couponCode?: string; guestCount?: number; selectedServiceType?: string; eventDate?: string; eventTime?: string; minPrice?: number; maxPrice?: number; doorStepService: string; setPreferences?: SetPreferences[]; previous_v1?: CartModel; previous_v2?: CartModel; updateCount?: number; versionStatus?: string; assigneeIds?: string[]; alternateNumber?: string; updated_user?: string | undefined; } export declare class SetPreferences { pureVegGuest?: number; spicyLevel?: string; consumeAlcohol?: string; tellUsMore?: string; serviceType?: string; menuPreference?: string; }