Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

File metadata and controls

30 lines (21 loc) · 1.38 KB

BigSegmentStoreIntegrationCollection

Properties

Name Type Description Notes
links BigSegmentStoreIntegrationCollectionLinks
items List[BigSegmentStoreIntegration] An array of persistent store integration configurations

Example

from launchdarkly_api.models.big_segment_store_integration_collection import BigSegmentStoreIntegrationCollection

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

# convert the object into a dict
big_segment_store_integration_collection_dict = big_segment_store_integration_collection_instance.to_dict()
# create an instance of BigSegmentStoreIntegrationCollection from a dict
big_segment_store_integration_collection_from_dict = BigSegmentStoreIntegrationCollection.from_dict(big_segment_store_integration_collection_dict)

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