Module Values_1.ComparativeOrderSource

A structure that represents a comparative order.

Sourcetype nonrec t = {
  1. useOrdering : ColumnOrderingType.t option;
    (*

    The ordering type for a column. Valid values for this structure are GREATER_IS_BETTER, LESSER_IS_BETTER and SPECIFIED.

    *)
  2. specifedOrder : StringList.t option;
    (*

    The list of columns to be used in the ordering.

    *)
  3. treatUndefinedSpecifiedValues : UndefinedSpecifiedValueType.t option;
    (*

    The treat of undefined specified values. Valid values for this structure are LEAST and MOST.

    *)
}
Sourceval make : ?useOrdering:??? -> ?specifedOrder:??? -> ?treatUndefinedSpecifiedValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Values_0.String_.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