frontend
    Preparing search index...

    Interface Restaurant

    Represents a restaurant entity.

    interface Restaurant {
        createdAt: string;
        cuisine: string;
        description?: string;
        id: string;
        imageUrl?: string;
        location: string;
        name: string;
        rating: number;
        region: string;
        updatedAt: string;
    }
    Index

    Properties

    createdAt: string

    ISO timestamp when the restaurant was created

    cuisine: string

    Type of cuisine served

    description?: string

    Optional restaurant description

    id: string

    Unique restaurant ID

    imageUrl?: string

    Optional image URL

    location: string

    City or physical location

    name: string

    Display name of the restaurant

    rating: number

    Average customer rating

    region: string

    Geographic region identifier

    updatedAt: string

    ISO timestamp when the restaurant was last updated