SsisParameterResponse

data class SsisParameterResponse(val dataType: String? = null, val defaultValue: String? = null, val description: String? = null, val designDefaultValue: String? = null, val id: Double? = null, val name: String? = null, val required: Boolean? = null, val sensitive: Boolean? = null, val sensitiveDefaultValue: String? = null, val valueSet: Boolean? = null, val valueType: String? = null, val variable: String? = null)

Ssis parameter.

Constructors

Link copied to clipboard
constructor(dataType: String? = null, defaultValue: String? = null, description: String? = null, designDefaultValue: String? = null, id: Double? = null, name: String? = null, required: Boolean? = null, sensitive: Boolean? = null, sensitiveDefaultValue: String? = null, valueSet: Boolean? = null, valueType: String? = null, variable: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val dataType: String? = null

Parameter type.

Link copied to clipboard
val defaultValue: String? = null

Default value of parameter.

Link copied to clipboard
val description: String? = null

Parameter description.

Link copied to clipboard

Design default value of parameter.

Link copied to clipboard
val id: Double? = null

Parameter id.

Link copied to clipboard
val name: String? = null

Parameter name.

Link copied to clipboard
val required: Boolean? = null

Whether parameter is required.

Link copied to clipboard
val sensitive: Boolean? = null

Whether parameter is sensitive.

Link copied to clipboard

Default sensitive value of parameter.

Link copied to clipboard
val valueSet: Boolean? = null

Parameter value set.

Link copied to clipboard
val valueType: String? = null

Parameter value type.

Link copied to clipboard
val variable: String? = null

Parameter reference variable.