Interface ConnectorCopilotSuggestionAction

interface ConnectorCopilotSuggestionAction {
    type: ConnectorCopilotSuggestionActionType;
    path: string;
    locator?: string;
    data: any;
    format?: "value" | "fields" | "schema";
    schema?: any;
    variablesSchema?: any;
    parameters?: any;
}

Properties

type: ConnectorCopilotSuggestionActionType
path: string
locator?: string
data: any
format?: "value" | "fields" | "schema"
schema?: any
variablesSchema?: any
parameters?: any