Module Values_0.DataPathValueSource

The data path that needs to be sorted.

Sourcetype nonrec t = {
  1. fieldId : FieldId.t option;
    (*

    The field ID of the field that needs to be sorted.

    *)
  2. fieldValue : FieldValue.t option;
    (*

    The actual value of the field that needs to be sorted.

    *)
  3. dataPathType : DataPathType.t option;
    (*

    The type configuration of the field.

    *)
}
Sourceval make : ?fieldId:??? -> ?fieldValue:??? -> ?dataPathType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FieldId.t | `Structure of (string * [> `Enum of string ]) 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