Module Values.CoverageTimeSource

Information about when an on-call shift begins and ends.

Sourcetype nonrec t = {
  1. start : HandOffTime.t option;
    (*

    Information about when the on-call rotation shift begins.

    *)
  2. end_ : HandOffTime.t option;
    (*

    Information about when the on-call rotation shift ends.

    *)
}
Sourceval make : ?start:??? -> ?end_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of HourOfDay.t ]) list ]) 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