Skip to content

Batch Create Variable

frauddetector_batch_create_variable R Documentation

Creates a batch of variables

Description

Creates a batch of variables.

Usage

frauddetector_batch_create_variable(variableEntries, tags)

Arguments

variableEntries

[required] The list of variables for the batch create variable request.

tags

A collection of key and value pairs.

Value

A list with the following syntax:

list(
  errors = list(
    list(
      name = "string",
      code = 123,
      message = "string"
    )
  )
)

Request syntax

svc$batch_create_variable(
  variableEntries = list(
    list(
      name = "string",
      dataType = "string",
      dataSource = "string",
      defaultValue = "string",
      description = "string",
      variableType = "string"
    )
  ),
  tags = list(
    list(
      key = "string",
      value = "string"
    )
  )
)