Values.ExportStatusSourceThe current status of an archive export job.
type nonrec t = {submissionTimestamp : Timestamp.t option;The timestamp of when the export job was submitted.
*)completionTimestamp : Timestamp.t option;The timestamp of when the export job completed (if finished).
*)state : ExportState.t option;The current state of the export job.
*)errorMessage : ErrorMessage.t option;An error message if the export job failed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ErrorMessage.t
| `Timestamp of Timestamp.t ])
list ]