Module Values.StatusReasonSource

Stream status reason with error and timestamp.

Sourcetype nonrec t = {
  1. error : StreamFailureErrorCode.t option;
    (*

    The error code for the stream failure.

    *)
  2. updatedAt : Timestamp.t option;
    (*

    The timestamp when the status was updated.

    *)
}
Sourceval make : ?error:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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