GetRecipeResult

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

Constructors

Link copied to clipboard
constructor(description: String? = null, steps: List<RecipeStep>? = null, tags: List<Tag>? = 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.

Link copied to clipboard
val tags: List<Tag>? = null

Metadata tags that have been applied to the recipe.