FunctionEnvironment

data class FunctionEnvironment(val variables: Map<String, String>? = null)

Constructors

Link copied to clipboard
constructor(variables: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

Map of environment variables that are accessible from the function code during execution. If provided at least one key must be present.