@camunda8/sdk
    Preparing search index...

    Interface BroadcastSignalRequest

    interface BroadcastSignalRequest {
        signalName: string;
        tenantId?: string;
        variables: string;
    }
    Index

    Properties

    signalName: string

    The name of the signal

    tenantId?: string

    the id of the tenant that owns the signal.

    variables: string

    the signal variables as a JSON document; to be valid, the root of the document must be an object, e.g. { "a": "foo" }. [ "foo" ] would not be valid.