FunctionInputResponse

data class FunctionInputResponse(val dataType: String? = null, val isConfigurationParameter: Boolean? = null)

Describes one input parameter of a function.

Constructors

Link copied to clipboard
constructor(dataType: String? = null, isConfigurationParameter: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val dataType: String? = null

The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx

Link copied to clipboard

A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.