Bitbucket Data Center API Client
    Preparing search index...

    Interface RefSyncStatus

    Fork synchronization status of a repository.

    interface RefSyncStatus {
        aheadRefs?: SyncRef[];
        available?: boolean;
        divergedRefs?: SyncRef[];
        enabled: boolean;
        lastSync?: number;
        orphanedRefs?: SyncRef[];
    }
    Index

    Properties

    aheadRefs?: SyncRef[]
    available?: boolean

    Whether sync is available for this repository (i.e. it is a fork)

    divergedRefs?: SyncRef[]
    enabled: boolean

    Whether sync is enabled for this repository

    lastSync?: number

    Epoch millisecond timestamp of the last synchronization

    orphanedRefs?: SyncRef[]