Module Values.ExportTaskExecutionInfoSource

Represents the status of an export task.

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

    The creation time of the export task, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

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

    The completion time of the export task, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

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