MatterSpecification.v13.Core § 11.17.6.7

interface DstOffset {
    offset: number;
    validStarting: number | bigint;
    validUntil: null | number | bigint;
}

Hierarchy (view full)

Properties

offset: number = ...

The DST offset in seconds. Normally this is in the range of 0 to 3600 seconds (1 hour), but this field will accept any values in the int32 range to accommodate potential future legislation that does not fit with these assumptions.

MatterSpecification.v13.Core § 11.17.6.7.1

validStarting: number | bigint = ...

The UTC time when the offset shall be applied.

MatterSpecification.v13.Core § 11.17.6.7.2

validUntil: null | number | bigint = ...

The UTC time when the offset shall stop being applied. Providing a null value here indicates a permanent DST change. If this value is non-null the value shall be larger than the ValidStarting time.

MatterSpecification.v13.Core § 11.17.6.7.3