interface State {
    currentApp?: null | TypeFromFields<{
        application: FieldType<TypeFromFields<{
            applicationId: FieldType<string>;
            catalogVendorId: FieldType<number>;
        }>>;
        endpoint: OptionalFieldType<EndpointNumber>;
    }>;
}

Hierarchy

  • StateType
    • State

Properties

Properties

currentApp?: null | TypeFromFields<{
    application: FieldType<TypeFromFields<{
        applicationId: FieldType<string>;
        catalogVendorId: FieldType<number>;
    }>>;
    endpoint: OptionalFieldType<EndpointNumber>;
}>

This attribute shall specify the current in-focus application, identified using an Application ID, catalog vendor ID and the corresponding endpoint number when the application is represented by a Content App endpoint. A null shall be used to indicate there is no current in-focus application.

MatterSpecification.v13.Cluster § 6.4.6.2