Module Values.CountPercentSource

Entity that comprises information of count and percentage.

Sourcetype nonrec t = {
  1. count : Integer.t option;
    (*

    Indicates the count of occurences of the given statistic.

    *)
  2. percentage : Float_.t option;
    (*

    Indicates the percentage of occurances of the given statistic.

    *)
}
Sourceval make : ?count:??? -> ?percentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t | `Integer of Integer.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