Module Values_2.InstanceEventWindowTimeRangeRequestSource

The start day and time and the end day and time of the time range, in UTC.

Sourcetype nonrec t = {
  1. startWeekDay : Values_0.WeekDay.t option;
    (*

    The day on which the time range begins.

    *)
  2. startHour : Values_0.Hour.t option;
    (*

    The hour when the time range begins.

    *)
  3. endWeekDay : Values_0.WeekDay.t option;
    (*

    The day on which the time range ends.

    *)
  4. endHour : Values_0.Hour.t option;
    (*

    The hour when the time range ends.

    *)
}
Sourceval make : ?startWeekDay:??? -> ?startHour:??? -> ?endWeekDay:??? -> ?endHour:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Hour.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