Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.3 KB

recipeinput.md

File metadata and controls

25 lines (20 loc) · 1.3 KB

RecipeInput

Example Usage

import { RecipeInput } from "speakeasy-recipe-book/models/custom_components";

let value: RecipeInput = {
  name: "<value>",
  ingredients: [
    "<value>",
  ],
  instructions: "<value>",
};

Fields

Field Type Required Description
name string ✔️ Name of the recipe
ingredients string[] ✔️ List of ingredients
instructions string ✔️ Cooking instructions for the recipe
servings number Number of servings
prepTime number Preparation time in minutes