⚠️ Internal: This API is not publically exported by the package.
interface BuffaloZclOptions {
    attrId?: number;
    dataType?: DataType | BuffaloZclDataType;
    length?: number;
    payload?: {
        commandID?: number;
        mode?: number;
        numoftrans?: number;
        payloadSize?: number;
    } & {
        [key: string]: unknown;
    };
}

Properties

attrId?: number
length?: number
payload?: {
    commandID?: number;
    mode?: number;
    numoftrans?: number;
    payloadSize?: number;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optional commandID?: number
  • Optional mode?: number
  • Optional numoftrans?: number
  • Optional payloadSize?: number

Type declaration

  • [key: string]: unknown