Module Values.RecurrenceSettingsSource

Information about when an on-call rotation is in effect and how long the rotation period lasts.

Sourcetype nonrec t = {
  1. monthlySettings : MonthlySettings.t option;
    (*

    Information about on-call rotations that recur monthly.

    *)
  2. weeklySettings : WeeklySettings.t option;
    (*

    Information about on-call rotations that recur weekly.

    *)
  3. dailySettings : DailySettings.t option;
    (*

    Information about on-call rotations that recur daily.

    *)
  4. numberOfOnCalls : NumberOfOnCalls.t;
    (*

    The number of contacts, or shift team members designated to be on call concurrently during a shift. For example, in an on-call schedule that contains ten contacts, a value of 2 designates that two of them are on call at any given time.

    *)
  5. shiftCoverages : ShiftCoveragesMap.t option;
    (*

    Information about the days of the week that the on-call rotation coverage includes.

    *)
  6. recurrenceMultiplier : RecurrenceMultiplier.t;
    (*

    The number of days, weeks, or months a single rotation lasts.

    *)
}
Sourceval context_ : string
Sourceval make : ?monthlySettings:??? -> ?weeklySettings:??? -> ?dailySettings:??? -> ?shiftCoverages:??? -> numberOfOnCalls:NumberOfOnCalls.t -> recurrenceMultiplier:RecurrenceMultiplier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumberOfOnCalls.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of DayOfMonth.t | `Structure of (string * [> `Integer of HourOfDay.t ]) list ]) list ] list | `Map of ([> `Enum of string ] * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Integer of HourOfDay.t ]) list ]) list ] list ]) 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