zigbee-herdsman
    Preparing search index...

    https://github.com/project-chip/zap/blob/master/zcl-builtin/dotdot/README.md#commands Extra metadata:

    • requiredIf: Allows for an expression to be implemented which indicates the conditions in which a command is mandatory. Defaults to false
    interface Command {
        ID: number;
        name: string;
        parameters: readonly Parameter[];
        required?: true;
        response?: number;
    }
    Index

    Properties

    ID: number
    name: string
    parameters: readonly Parameter[]
    required?: true

    If the command is mandatory. Defaults to false

    response?: number