Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 985 Bytes

BigSegmentStoreStatus.md

File metadata and controls

26 lines (20 loc) · 985 Bytes

LaunchDarklyApi::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]
potentially_stale 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]
last_sync Integer [optional]
last_error Integer [optional]
errors Array<StoreIntegrationError> [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::BigSegmentStoreStatus.new(
  available: true,
  potentially_stale: false,
  last_sync: null,
  last_error: null,
  errors: null
)