Module Values.TimeZoneSource

The time zone in which the place is located.

Sourcetype nonrec t = {
  1. name : TimeZoneNameString.t option;
    (*

    The time zone name.

    *)
  2. offset : TimeZoneOffsetString.t option;
    (*

    Time zone offset of the timezone from UTC.

    *)
  3. offsetSeconds : TimeZoneOffsetSecondsLong.t option;
    (*

    The offset of the time zone from UTC, in seconds.

    *)
}
Sourceval make : ?name:??? -> ?offset:??? -> ?offsetSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of TimeZoneOffsetSecondsLong.t | `String of TimeZoneNameString.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