Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1005 Bytes

File metadata and controls

30 lines (21 loc) · 1005 Bytes

SegmentsSummary

Properties

Name Type Description Notes
count int
linked_segments ExpandedDirectlyLinkedSegments [optional]

Example

from launchdarkly_api.models.segments_summary import SegmentsSummary

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

# convert the object into a dict
segments_summary_dict = segments_summary_instance.to_dict()
# create an instance of SegmentsSummary from a dict
segments_summary_from_dict = SegmentsSummary.from_dict(segments_summary_dict)

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