Module Values_1.DataTableEvaluatedValueSource

A data table evaluated value.

Sourcetype nonrec t = {
  1. recordId : Values_0.DataTableId.t option;
    (*

    The value's record ID.

    *)
  2. primaryValues : Values_0.PrimaryValuesSet.t option;
    (*

    The value's primary values.

    *)
  3. attributeName : Values_0.DataTableName.t option;
    (*

    The value's attribute name.

    *)
  4. valueType : Values_0.DataTableAttributeValueType.t option;
    (*

    The value's value type.

    *)
  5. found : Values_0.Boolean.t option;
    (*

    The value's found.

    *)
  6. error : Values_0.Boolean.t option;
    (*

    The value's error.

    *)
  7. evaluatedValue : Values_0.String_.t option;
    (*

    The value's evaluated value.

    *)
}
Sourceval make : ?recordId:??? -> ?primaryValues:??? -> ?attributeName:??? -> ?valueType:??? -> ?found:??? -> ?error:??? -> ?evaluatedValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.DataTableId.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