Interface UnknownAttribute<T, F>

interface UnknownAttribute<T, F> {
    default?: T;
    fabricScoped: boolean;
    fixed: boolean;
    id: AttributeId;
    isConditional: boolean;
    mandatoryIf: ConditionalFeatureList<F>;
    omitChanges: boolean;
    optional: boolean;
    optionalIf: ConditionalFeatureList<F>;
    persistent: boolean;
    readAcl: AccessLevel;
    scene: boolean;
    schema: TlvSchema<T>;
    timed: boolean;
    unknown: true;
    writable: boolean;
    writeAcl?: AccessLevel;
}

Type Parameters

Hierarchy (view full)

Properties

default?: T
fabricScoped: boolean
fixed: boolean
isConditional: boolean
omitChanges: boolean
optional: boolean
persistent: boolean
readAcl: AccessLevel
scene: boolean
schema: TlvSchema<T>
timed: boolean
unknown
writable: boolean
writeAcl?: AccessLevel