Module Values.DuplicateConnectionsFlowValidationDetailsSource

Details about duplicate connections found between two nodes in the flow.

Sourcetype nonrec t = {
  1. source : FlowNodeName.t option;
    (*

    The name of the source node where the duplicate connection starts.

    *)
  2. target : FlowNodeName.t option;
    (*

    The name of the target node where the duplicate connection ends.

    *)
}
Sourceval make : ?source:??? -> ?target:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FlowNodeName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t