Interface ConnectorCopilotSuggestionAction

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

Properties

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