Module Values.TimeZoneSource

Information about a time zone. Includes the name of the time zone and the offset from UTC in seconds.

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

    The name of the time zone, following the IANA time zone standard. For example, America/Los_Angeles.

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

    The time zone's offset, in seconds, from UTC.

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