Skip to main content

FlowSyncOptions

Implements the workflow data synchronization configuration options interface.

The FlowSyncOptions class provides the concrete implementation of the IFlowSyncOptions interface for managing workflow data synchronization. It uses JSON serialization with custom converters to handle the concrete types of its properties:

  1. MatchingOptions: Uses ConcreteConverter<FlowMatchingOptions> for JSON serialization
  2. SourceOptions: Uses ConcreteConverter<FlowSourceOptions> for JSON serialization
  3. TargetOptions: Uses ConcreteConverter<FlowTargetOptions> for JSON serialization

This class serves as the main configuration container for workflow data synchronization operations, providing concrete implementations for all the necessary options while ensuring proper JSON serialization of its properties.

Properties

NameDescription
TargetOptionsGets or sets the concrete implementation of target options for data synchronization.
MatchingOptionsGets or sets the concrete implementation of matching options for source and target data.
SourceOptionsGets or sets the concrete implementation of source options for data synchronization.