ScriptActivityParameterResponse

data class ScriptActivityParameterResponse(val direction: String? = null, val name: Any? = null, val size: Int? = null, val type: String? = null, val value: Any? = null)

Parameters of a script block.

Constructors

Link copied to clipboard
constructor(direction: String? = null, name: Any? = null, size: Int? = null, type: String? = null, value: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val direction: String? = null

The direction of the parameter.

Link copied to clipboard
val name: Any? = null

The name of the parameter. Type: string (or Expression with resultType string).

Link copied to clipboard
val size: Int? = null

The size of the output direction parameter.

Link copied to clipboard
val type: String? = null

The type of the parameter.

Link copied to clipboard
val value: Any? = null

The value of the parameter. Type: string (or Expression with resultType string).