Module Values.TimingSource

Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.

Sourcetype nonrec t = {
  1. finishTime : string option;
    (*

    The time, in Unix epoch format, that the transcoding job finished

    *)
  2. startTime : string option;
    (*

    The time, in Unix epoch format, that transcoding for the job began.

    *)
  3. submitTime : string option;
    (*

    The time, in Unix epoch format, that you submitted the job.

    *)
}
Sourceval make : ?finishTime:??? -> ?startTime:??? -> ?submitTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of string ]) 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