Module Values.PreviewOverrideSource

Information about contacts and times that an on-call override replaces.

Sourcetype nonrec t = {
  1. newMembers : RotationOverridePreviewMemberList.t option;
    (*

    Information about contacts to add to an on-call rotation override.

    *)
  2. startTime : DateTime.t option;
    (*

    Information about the time a rotation override would begin.

    *)
  3. endTime : DateTime.t option;
    (*

    Information about the time a rotation override would end.

    *)
}
Sourceval make : ?newMembers:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Member.t ] list | `Timestamp of DateTime.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