Interface BroadcastSignalRequest

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

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.

Generated using TypeDoc