Module Values.OpeningHoursComponentsSource

Components of the opening hours object.

Sourcetype nonrec t = {
  1. openTime : OpeningHoursComponentsOpenTimeString.t option;
    (*

    String which represents the opening hours, such as "T070000".

    *)
  2. openDuration : OpeningHoursComponentsOpenDurationString.t option;
    (*

    String which represents the duration of the opening period, such as "PT12H00M".

    *)
  3. recurrence : OpeningHoursComponentsRecurrenceString.t option;
    (*

    Days or periods when the provided opening hours are in affect. Example: FREQ:DAILY;BYDAY:MO,TU,WE,TH,SU

    *)
}
Sourceval make : ?openTime:??? -> ?openDuration:??? -> ?recurrence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OpeningHoursComponentsOpenTimeString.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