Input to the TimeSynchronization setUtcTime command

MatterSpecification.v13.Core § 11.17.9.1

interface SetUtcTimeRequest {
    granularity: TimeSynchronization.Granularity;
    timeSource?: TimeSynchronization.TimeSource;
    utcTime: number | bigint;
}

Hierarchy (view full)

Properties

This shall give the Client’s Granularity, as described in Section 11.17.8.2, “Granularity Attribute”.

MatterSpecification.v13.Core § 11.17.9.1.2

This shall give the Client’s TimeSource, as described in Section 11.17.8.3, “TimeSource Attribute”.

MatterSpecification.v13.Core § 11.17.9.1.3

utcTime: number | bigint

This shall give the Client’s UTC Time.

MatterSpecification.v13.Core § 11.17.9.1.1