GetRecipeResult

data class GetRecipeResult(val description: String? = null, val steps: List<RecipeStep>? = null)

Constructors

Link copied to clipboard
constructor(description: String? = null, steps: List<RecipeStep>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

Description of the recipe

Link copied to clipboard
val steps: List<RecipeStep>? = null

A list of steps that are defined by the recipe.