ICustomDashboardEvent
Home > @gooddata/sdk-ui-dashboard > ICustomDashboardEvent
ICustomDashboardEvent interface
Base type for all custom events.
Signature:
export interface ICustomDashboardEvent<TPayload = any>
Properties
Property | Type | Description |
---|---|---|
ctx | DashboardContext | Dashboard context in which the event occurred. |
meta? | { acceptedTimestamp: number; } | (Optional) Metadata about the event useful for logging and handling of the event. |
payload? | TPayload | (Optional) Specify any additional data the custom event needs. |
type | string | Event type. Always starts with "CUSTOM/EVT". |