SyncResult

Result of a connector sync operation.

Usage

Source

SyncResult()

Parameters

added: int = 0

Number of new documents added.

updated: int = 0

Number of existing documents updated (content changed).

unchanged: int = 0
Number of documents skipped (content unchanged).

Examples

result.added      # 5
result.updated    # 2
result.unchanged  # 10
result.total      # 17

Attributes

Name Description
total Total documents processed.

total

Total documents processed.

total: int