Module Values.ExpressionVariableSource

Contains expression variable information.

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

    The friendly name of the variable to be used in the expression.

    *)
  2. value : VariableValue.t;
    (*

    The variable that identifies an asset property from which to use values.

    *)
}
Sourceval context_ : string
Sourceval make : name:VariableName.t -> value:VariableValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of VariableName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ID.t ]) list ] list | `String of Macro.t ]) list ]) 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