Module Values.OpeningHoursSource

List of opening hours objects.

Sourcetype nonrec t = {
  1. display : OpeningHoursDisplayList.t option;
    (*

    List of opening hours in the format they are displayed in. This can vary by result and in most cases represents how the result uniquely formats their opening hours.

    *)
  2. openNow : SensitiveBoolean.t option;
    (*

    Boolean which indicates if the result/place is currently open.

    *)
  3. components : OpeningHoursComponentsList.t option;
    (*

    Components of the opening hours object.

    *)
  4. categories : CategoryList.t option;
    (*

    Categories of results that results must belong too.

    *)
}
Sourceval make : ?display:??? -> ?openNow:??? -> ?components:??? -> ?categories:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `List of [> `String of OpeningHoursDisplay.t | `Structure of (string * [> `Boolean of SensitiveBoolean.t | `String of OpeningHoursComponentsOpenTimeString.t ]) 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