interface Meal {
    _id?: string;
    bookable?: boolean;
    createdDate?: Date;
    deleted: boolean;
    description?: string;
    hoursRequested?: number;
    id?: string;
    images?: string[];
    mealType: MealType;
    modifiedDate?: Date;
    name?: string;
    operator?: string | Operator;
    options?: MealOption[];
    price?: number;
    rezdyExtraId?: number;
    serviceLibrary?: string;
    startTime?: string;
    timing?: ServiceTiming;
    type: MEAL;
    user: string | User;
}

Hierarchy

  • BaseServiceModel
    • Meal

Properties

_id?: string
bookable?: boolean
createdDate?: Date
deleted: boolean
description?: string
hoursRequested?: number
id?: string

Use _id instead

images?: string[]
mealType: MealType
modifiedDate?: Date
name?: string
operator?: string | Operator
options?: MealOption[]
price?: number
rezdyExtraId?: number
serviceLibrary?: string
startTime?: string
timing?: ServiceTiming
type: MEAL
user: string | User