Module Values.AttributeDetailsSource

Mathematical expression and a list of attribute items specified in that expression.

Sourcetype nonrec t = {
  1. attributes : AttributeList.t;
    (*

    A list of attribute items specified in the mathematical expression.

    *)
  2. expression : String1To255.t;
    (*

    Mathematical expression that is performed on attribute items provided in the attribute list. Each element in the expression should follow the structure of \"{ObjectTypeName.AttributeName}\".

    *)
}
Sourceval context_ : string
Sourceval make : attributes:AttributeList.t -> expression:String1To255.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AttributeName.t ]) list ] list | `String of String1To255.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