Skip to contents

Print method for RecipeWorkflow objects

Usage

# S3 method for class 'RecipeWorkflow'
print(x, ...)

Arguments

x

A RecipeWorkflow object

...

Additional arguments (unused)

Value

Invisibly returns the object

Examples

wf <- RecipeWorkflow$new(
  id = "w1", name = "Example Workflow", user = "tester",
  edition = "2023", survey_type = "test",
  recipe_ids = "r1",
  calls = list(), description = "Demo"
)
print(wf)
#> 
#> ── Workflow: Example Workflow ──
#> Author:  tester
#> Survey:  test / 2023
#> Version: 1.0.0
#> Description: Demo
#> Certification: community
#> 
#> ── Uses Recipes (1) ──
#>   r1
#>