Standard dependencies for an endpoint per the Matter specification.

interface Requirements {
    client?: {
        mandatory?: SupportedBehaviors;
        optional?: SupportedBehaviors;
    };
    server?: {
        mandatory?: SupportedBehaviors;
        optional?: SupportedBehaviors;
    };
}

Properties

Properties

client?: {
    mandatory?: SupportedBehaviors;
    optional?: SupportedBehaviors;
}
server?: {
    mandatory?: SupportedBehaviors;
    optional?: SupportedBehaviors;
}