Interface TimeZone

Describes a time zone.

interface TimeZone {
    @type: "timeZone";
    id: string;
    name: string;
    utc_time_offset: number;
}

Properties

@type: "timeZone"
id: string

Unique time zone identifier.

name: string

Time zone name.

utc_time_offset: number

Current UTC time offset for the time zone.