Module Values_0.StatisticAnnotationSource

A Statistic Annotation.

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

    The Profile ID.

    *)
  2. statisticId : HashString.t option;
    (*

    The Statistic ID.

    *)
  3. statisticRecordedOn : Timestamp.t option;
    (*

    The timestamp when the annotated statistic was recorded.

    *)
  4. inclusionAnnotation : TimestampedInclusionAnnotation.t option;
    (*

    The inclusion annotation applied to the statistic.

    *)
}
Sourceval make : ?profileId:??? -> ?statisticId:??? -> ?statisticRecordedOn:??? -> ?inclusionAnnotation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HashString.t | `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.t ]) list | `Timestamp of 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