Module Values.StatusSummarySource

A summarized description of the status.

Sourcetype nonrec t = {
  1. lastUpdatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The datetime stamp when the status was last updated.

    *)
  2. status : Status.t option;
    (*

    The current status.

    *)
  3. statusDetails : StatusDetails.t option;
    (*

    Details about the status.

    *)
  4. statusMessage : String_.t option;
    (*

    When applicable, returns an informational message relevant to the current status and status type of the status summary object. We don't recommend implementing parsing logic around this value since the messages returned can vary in format.

    *)
  5. statusType : StatusType.t option;
    (*

    The type of a status summary.

    *)
}
Sourceval make : ?lastUpdatedAt:??? -> ?status:??? -> ?statusDetails:??? -> ?statusMessage:??? -> ?statusType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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