MappingDataFlowResponse

data class MappingDataFlowResponse(val annotations: List<Any>? = null, val description: String? = null, val folder: DataFlowResponseFolder? = null, val script: String? = null, val scriptLines: List<String>? = null, val sinks: List<DataFlowSinkResponse>? = null, val sources: List<DataFlowSourceResponse>? = null, val transformations: List<TransformationResponse>? = null, val type: String)

Mapping data flow.

Constructors

Link copied to clipboard
constructor(annotations: List<Any>? = null, description: String? = null, folder: DataFlowResponseFolder? = null, script: String? = null, scriptLines: List<String>? = null, sinks: List<DataFlowSinkResponse>? = null, sources: List<DataFlowSourceResponse>? = null, transformations: List<TransformationResponse>? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val annotations: List<Any>? = null

List of tags that can be used for describing the data flow.

Link copied to clipboard
val description: String? = null

The description of the data flow.

Link copied to clipboard

The folder that this data flow is in. If not specified, Data flow will appear at the root level.

Link copied to clipboard
val script: String? = null

DataFlow script.

Link copied to clipboard
val scriptLines: List<String>? = null

Data flow script lines.

Link copied to clipboard

List of sinks in data flow.

Link copied to clipboard

List of sources in data flow.

Link copied to clipboard

List of transformations in data flow.

Link copied to clipboard

Type of data flow. Expected value is 'MappingDataFlow'.