Module Values.ExportStatusSource

The current status of an archive export job.

Sourcetype nonrec t = {
  1. submissionTimestamp : Timestamp.t option;
    (*

    The timestamp of when the export job was submitted.

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

    The timestamp of when the export job completed (if finished).

    *)
  3. state : ExportState.t option;
    (*

    The current state of the export job.

    *)
  4. errorMessage : ErrorMessage.t option;
    (*

    An error message if the export job failed.

    *)
}
Sourceval make : ?submissionTimestamp:??? -> ?completionTimestamp:??? -> ?state:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ErrorMessage.t | `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