Module Values.FlowConditionSource

Defines a condition in the condition node.

Sourcetype nonrec t = {
  1. name : FlowConditionName.t;
    (*

    A name for the condition that you can reference.

    *)
  2. expression : FlowConditionExpression.t option;
    (*

    Defines the condition. You must refer to at least one of the inputs in the condition. For more information, expand the Condition node section in Node types in prompt flows.

    *)
}
Sourceval context_ : string
Sourceval make : ?expression:??? -> name:FlowConditionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FlowConditionName.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