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."
19 lines (18 loc) • 498 B
TypeScript
import { BaseModel } from "../../base-model";
export declare class ItemAccompanimentsModel extends BaseModel {
accompanimentId: string;
itemId: string;
accompanimentName?: string;
accompanimentType?: string;
description?: string;
imageUrl?: string;
maxPrice?: number;
minPrice?: number;
quantityUnit?: string;
minQuantity?: number;
maxQuantity?: number;
active?: string;
isFree?: boolean;
platterType?: string;
platterSubType?: string;
}