Module Values.MissingNodeInputFlowValidationDetailsSource

Details about a missing required input in a node.

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

    The name of the node missing the required input.

    *)
  2. input : FlowNodeInputName.t option;
    (*

    The name of the missing input.

    *)
}
Sourceval make : ?node:??? -> ?input:??? -> 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