TransformationSettings
public struct TransformationSettings
Configuration for a data transformation.
-
Unique identifier for this transformation.
Declaration
Swift
public let id: String -
Identifier of the transformer to use.
Declaration
Swift
public let transformerId: String -
Scope where this transformation applies.
Declaration
Swift
public let scope: TransformationScope -
Configuration data for the transformer.
Declaration
Swift
public let configuration: DataObject -
Execution order. Lower values run first; defaults to
Int.maxwhen unspecified.Declaration
Swift
public let order: Int -
Creates transformation settings with the specified parameters.
Declaration
Swift
public init(id: String, transformerId: String, scope: TransformationScope, configuration: DataObject = [:], conditions: Rule<Condition>? = nil, order: Int? = nil)Parameters
idUnique identifier for this transformation.
transformerIdIdentifier of the transformer to use.
scopeScope where this transformation applies.
configurationConfiguration data for the transformer.
conditionsOptional conditions for when to apply the transformation.
orderExecution order. Lower values run first; defaults to
Int.maxwhen unspecified.
View on GitHub