zigbee-herdsman
    Preparing search index...

    Type Alias GpdReadAttributeResponse

    type GpdReadAttributeResponse = {
        manufacturerID: number | undefined;
        options: number;
        records: {
            attributes: Record<
                string
                | number,
                { attrData: unknown; status: Status },
            >;
            clusterID: number;
            clusterName: string;
        }[];
    }
    Index

    Properties

    manufacturerID: number | undefined
    options: number
    records: {
        attributes: Record<
            string
            | number,
            { attrData: unknown; status: Status },
        >;
        clusterID: number;
        clusterName: string;
    }[]