Package version:

Interface KnowledgeBaseRemoteSharePointActivityRecord

Represents a remote SharePoint retrieval activity record.

interface KnowledgeBaseRemoteSharePointActivityRecord {
    count?: number;
    elapsedMs?: number;
    error?: KnowledgeBaseErrorDetail;
    id: number;
    knowledgeSourceName?: string;
    queryTime?: any;
    remoteSharePointArguments?: KnowledgeBaseRemoteSharePointActivityArguments;
    type: "remoteSharePoint";
}

Hierarchy (view full)

Properties

count?: number

The count of documents retrieved that were sufficiently relevant to pass the reranker threshold.

elapsedMs?: number

The elapsed time in milliseconds for the retrieval activity.

The error detail explaining why the operation failed. This property is only included when the activity does not succeed.

id: number

The ID of the activity record.

knowledgeSourceName?: string

The knowledge source for the retrieval activity.

queryTime?: any

The query time for this retrieval activity.

The remote SharePoint arguments for the retrieval activity.

type

Polymorphic discriminator, which specifies the different types this object can be