import type * as Merge from "../../../index"; /** * # The SyncStatus Object * ### Description * The `SyncStatus` object is used to represent the syncing state of an account * * ### Usage Example * View the `SyncStatus` for an account to see how recently its models were synced. */ export interface SyncStatus { modelName: string; modelId: string; lastSyncStart?: Date; nextSyncStart?: Date; lastSyncResult?: Merge.ticketing.SyncStatusLastSyncResult; lastSyncFinished?: Date; status: Merge.ticketing.SyncStatusStatus; isInitialSync: boolean; selectiveSyncConfigurationsUsage?: Merge.ticketing.SelectiveSyncConfigurationsUsageEnum; }