Interface InvokeOptions

interface InvokeOptions {
    event: string;
    force?: boolean;
    payload: SerializableValue;
    throwFailures?: boolean;
}

Hierarchy (view full)

Properties

event: string

The event ID.

force?: boolean

Ignore (most) errors.

The payload. Ensure this can be serialized to JSON, otherwise some data may be lost.

throwFailures?: boolean

If true, Failures will be thrown rather than returned.