SetDataValues Transformation
-
A builder for creating
TransformationSettingsthat configure aSetDataValuestransformer.This builder lets you define operations that copy values between paths in the dispatch payload or set constant values at specific destinations.
Example:
See morelet settings = SetDataValuesSettingsBuilder(id: "my-transform") .setFrom(.key("source"), to: .key("dest")) .setConstant("hello", to: .key("greeting")) .setScope(.afterCollectors) .build()Declaration
Swift
public class SetDataValuesSettingsBuilder : TransformationSettingsBuilder
View on GitHub
SetDataValues Transformation Reference