Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.22 KB

File metadata and controls

28 lines (21 loc) · 1.22 KB

BigSegmentStoreStatus

Properties

Name Type Description Notes
available boolean Whether the persistent store integration is fully synchronized with the LaunchDarkly environment, and the <code>lastSync</code> occurred within a few minutes [optional] [default to undefined]
potentiallyStale boolean Whether the persistent store integration may not be fully synchronized with the LaunchDarkly environment. <code>true</code> if the integration could be stale. [optional] [default to undefined]
lastSync number [optional] [default to undefined]
lastError number [optional] [default to undefined]
errors Array<StoreIntegrationError> [optional] [default to undefined]

Example

import { BigSegmentStoreStatus } from 'launchdarkly-api-typescript';

const instance: BigSegmentStoreStatus = {
    available,
    potentiallyStale,
    lastSync,
    lastError,
    errors,
};

[Back to Model list] [Back to API list] [Back to README]