Skip to contents

Updates the attributes of an existing dataset template.

Usage

DatasetTemplate.update(id, env = get_connection(), ...)

Arguments

id

The ID of the dataset template to update.

env

(optional) Custom client environment.

...

Dataset template attributes to change.

Examples

if (FALSE) { # \dontrun{
DatasetTemplate.update(
  id = "1234",
  name = "New Template Name",
)
} # }