Interface UserActionsState

interface UserActionsState {
    error?: InsightAPIErrorStatusResponse;
    excludedCustomActions: string[];
    loading: boolean;
    ticketCreationDate?: string;
    timeline?: UserActionTimeline;
}

Properties

The error response if fetching the user actions failed.

excludedCustomActions: string[]

The names of custom actions to exclude from the user actions.

loading: boolean

true if fetching the user actions is in progress and false otherwise.

ticketCreationDate?: string

The ticket creation date in the ISO 8601 format.

timeline?: UserActionTimeline

The timeline of user actions.