Contains a stream that maps to the persisted format of a TZREG structure, which describes the time zone to be used for the start and end time of a recurring appointment or meeting request.

interface TzReg {
    bias: number;
    daylightBias: number;
    daylightDate: TransitionSystemTime;
    daylightYear: number;
    standardBias: number;
    standardDate: TransitionSystemTime;
    standardYear: number;
}

Properties

bias: number

offset from GMT

Unit: in minutes

e.g. -540 for JST (TZ=JST-9)

daylightBias: number

offset from bias during daylight time

Unit: in minutes

e.g. -60 for Japanese. In Japan there is no summer time. This value may be generic value over worldwide.

daylightDate: TransitionSystemTime

time to switch to daylight time

daylightYear: number

matches the stDaylightDate's wYear field

standardBias: number

offset from bias during standard time

standardDate: TransitionSystemTime

time to switch to standard time

standardYear: number

matches the stStandardDate's wYear member