Module Values.QueueTransitionSource

Description of the source and destination queues between which the job has moved, along with the timestamp of the move

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

    The queue that the job was on after the transition.

    *)
  2. sourceQueue : string option;
    (*

    The queue that the job was on before the transition.

    *)
  3. timestamp : string option;
    (*

    The time, in Unix epoch format, that the job moved from the source queue to the destination queue.

    *)
}
Sourceval make : ?destinationQueue:??? -> ?sourceQueue:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String 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