Input to the TimeSynchronization setTrustedTimeSource command

MatterSpecification.v13.Core § 11.17.9.2

interface SetTrustedTimeSourceRequest {
    fabricIndex: FabricIndex;
    trustedTimeSource: null | TypeFromFields<{
        endpoint: FieldType<EndpointNumber>;
        nodeId: FieldType<NodeId>;
    }>;
}

Hierarchy (view full)

Properties

fabricIndex: FabricIndex
trustedTimeSource: null | TypeFromFields<{
    endpoint: FieldType<EndpointNumber>;
    nodeId: FieldType<NodeId>;
}>

This field contains the Node ID and endpoint of a trusted time source on the accessing fabric.

MatterSpecification.v13.Core § 11.17.9.2.1