UNPKG

@botonic/plugin-hubtype-analytics

Version:

Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord

14 lines (13 loc) 550 B
import { EventAction, EventFeedback, RequestData } from '../types'; import { HtEvent } from './ht-event'; export declare class HtEventFeedback extends HtEvent { action: EventAction.FeedbackCase | EventAction.FeedbackConversation | EventAction.FeedbackMessage | EventAction.FeedbackWebview; feedback_target_id: string; feedback_group_id: string; possible_options: string[]; possible_values?: number[]; option: string; value?: number; comment?: string; constructor(event: EventFeedback, requestData: RequestData); }