Represents a meal with basic information.
id: String - The unique identifier for the meal.name: String - The name of the meal.thumbnail: String? - URL string of the meal's thumbnail image.
Represents detailed information about a meal.
id: String - The unique identifier for the meal.name: String - The name of the meal.category: String - The category of the meal.area: String - The area of origin of the meal.instructions: String - Cooking instructions.thumbnail: String? - URL string of the meal's thumbnail image.tags: String? - Tags related to the meal.youtubeURL: String? - URL of a YouTube video related to the meal.source: String? - Source of the recipe.ingredients: [String] - List of ingredients.measurements: [String] - List of measurements for the ingredients.
Represents the response from TheMealDB API containing a list of meals.
meals: [Meal] - Array of meals.