Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.53 KB

File metadata and controls

33 lines (24 loc) · 1.53 KB

BigSegmentStoreStatus

Properties

Name Type Description Notes
available bool 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 bool 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 int [optional]
last_error int [optional]
errors List[StoreIntegrationError] [optional]

Example

from launchdarkly_api.models.big_segment_store_status import BigSegmentStoreStatus

# TODO update the JSON string below
json = "{}"
# create an instance of BigSegmentStoreStatus from a JSON string
big_segment_store_status_instance = BigSegmentStoreStatus.from_json(json)
# print the JSON string representation of the object
print(BigSegmentStoreStatus.to_json())

# convert the object into a dict
big_segment_store_status_dict = big_segment_store_status_instance.to_dict()
# create an instance of BigSegmentStoreStatus from a dict
big_segment_store_status_from_dict = BigSegmentStoreStatus.from_dict(big_segment_store_status_dict)

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