Module Values_2.StatisticSummarySource

Summary information about a statistic.

Sourcetype nonrec t = {
  1. statisticId : Values_0.HashString.t option;
    (*

    The Statistic ID.

    *)
  2. profileId : Values_0.HashString.t option;
    (*

    The Profile ID.

    *)
  3. runIdentifier : RunIdentifier.t option;
    (*

    The Run Identifier

    *)
  4. statisticName : StatisticNameString.t option;
    (*

    The name of the statistic.

    *)
  5. doubleValue : float option;
    (*

    The value of the statistic.

    *)
  6. evaluationLevel : StatisticEvaluationLevel.t option;
    (*

    The evaluation level of the statistic. Possible values: Dataset, Column, Multicolumn.

    *)
  7. columnsReferenced : Values_1.ColumnNameList.t option;
    (*

    The list of columns referenced by the statistic.

    *)
  8. referencedDatasets : ReferenceDatasetsList.t option;
    (*

    The list of datasets referenced by the statistic.

    *)
  9. statisticProperties : StatisticPropertiesMap.t option;
    (*

    A StatisticPropertiesMap, which contains a NameString and DescriptionString

    *)
  10. recordedOn : Values_0.Timestamp.t option;
    (*

    The timestamp when the statistic was recorded.

    *)
  11. inclusionAnnotation : Values_0.TimestampedInclusionAnnotation.t option;
    (*

    The inclusion annotation for the statistic.

    *)
}
Sourceval make : ?statisticId:??? -> ?profileId:??? -> ?runIdentifier:??? -> ?statisticName:??? -> ?doubleValue:??? -> ?evaluationLevel:??? -> ?columnsReferenced:??? -> ?referencedDatasets:??? -> ?statisticProperties:??? -> ?recordedOn:??? -> ?inclusionAnnotation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `Enum of string | `List of [> `String of Values_0.NameString.t ] list | `Map of ([> `String of Values_0.NameString.t ] * [> `String of Values_0.DescriptionString.t ]) list | `String of Values_0.HashString.t | `Structure of (string * [> `Enum of string | `String of Values_0.HashString.t | `Timestamp of string ]) list | `Timestamp of Values_0.Timestamp.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