interface MealLibrary {
    _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;
    startTime?: string;
    timing?: ServiceTiming;
    type: MEAL;
    user: string | User;
}

Hierarchy

  • ServiceFields<Meal>
    • MealLibrary

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
startTime?: string
timing?: ServiceTiming
type: MEAL
user: string | User