Module Values_0.HoursOfOperationOverrideConfigSource

Information about the hours of operation override config: day, start time, and end time.

Sourcetype nonrec t = {
  1. day : OverrideDays.t option;
    (*

    The day that the hours of operation override applies to.

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

    The start time when your contact center opens if overrides are applied.

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

    The end time that your contact center closes if overrides are applied.

    *)
}
Sourceval make : ?day:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of Hours24Format.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