interface Time {
    text: string;
    time_zone: string;
    value: Date;
}

Properties

Properties

text: string

the time specified as a string. The time is displayed in the time zone of the transit stop.

time_zone: string

contains the time zone of this station. The value is the name of the time zone as defined in the IANA Time Zone Database, e.g. "America/New_York".

value: Date

the time specified as a JavaScript Date object.