ExperimentTemplateAction

data class ExperimentTemplateAction(val actionId: String, val description: String? = null, val parameters: Map<String, String>? = null, val startAfter: List<String>? = null, val targets: Map<String, String>? = null)

Specifies an action for the experiment template.

Constructors

Link copied to clipboard
constructor(actionId: String, description: String? = null, parameters: Map<String, String>? = null, startAfter: List<String>? = null, targets: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The ID of the action.

Link copied to clipboard
val description: String? = null

A description for the action.

Link copied to clipboard
val parameters: Map<String, String>? = null

The parameters for the action, if applicable.

Link copied to clipboard
val startAfter: List<String>? = null

The name of the action that must be completed before the current action starts.

Link copied to clipboard
val targets: Map<String, String>? = null

One or more targets for the action.