ExecuteActionResponse: {
    execution_details?: {
        executed?: boolean;
    };
    response_data?: {
        [key: string]: unknown;
    };
}

Type declaration

  • Optional execution_details?: {
        executed?: boolean;
    }

    An object containing the details of the action execution.

    • Optional executed?: boolean

      A boolean indicating whether the action was executed successfully.

  • Optional response_data?: {
        [key: string]: unknown;
    }

    An object containing the response data from the action execution.

    • [key: string]: unknown