Values.TimeZoneSourceInformation about a time zone. Includes the name of the time zone and the offset from UTC in seconds.
type nonrec t = {name : SensitiveString.t option;The name of the time zone, following the IANA time zone standard. For example, America/Los_Angeles.
*)offset : SensitiveInteger.t option;The time zone's offset, in seconds, from UTC.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of SensitiveInteger.t | `String of SensitiveString.t ])
list ]