JavaScriptFunctionBindingResponse

data class JavaScriptFunctionBindingResponse(val script: String? = null, val type: String)

The binding to a JavaScript function.

Constructors

Link copied to clipboard
constructor(script: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val script: String? = null

The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'

Link copied to clipboard

Indicates the function binding type. Expected value is 'Microsoft.StreamAnalytics/JavascriptUdf'.