Module Values_1.LastUpdateStatusSource

A value that indicates whether the update was successful.

Sourcetype nonrec t = {
  1. status : LastUpdateStatusValue.t option;
    (*

    A value that indicates whether the update was made successful.

    *)
  2. failureReason : Values_0.FailureReason.t option;
    (*

    If the update wasn't successful, indicates the reason why it failed.

    *)
}
Sourceval make : ?status:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.FailureReason.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