Module Values.ReportStatusSource

A two element dictionary with a lastDelivery and lastStatus key whose values describe the date and status of the last delivered report for a particular report definition.

Sourcetype nonrec t = {
  1. lastDelivery : LastDelivery.t option;
    (*

    A timestamp that gives the date of a report delivery.

    *)
  2. lastStatus : LastStatus.t option;
    (*

    An enum that gives the status of a report delivery.

    *)
}
Sourceval make : ?lastDelivery:??? -> ?lastStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LastDelivery.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