Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

ContextInstanceSegmentMemberships

Properties

Name Type Description Notes
items List[ContextInstanceSegmentMembership]
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.context_instance_segment_memberships import ContextInstanceSegmentMemberships

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

# convert the object into a dict
context_instance_segment_memberships_dict = context_instance_segment_memberships_instance.to_dict()
# create an instance of ContextInstanceSegmentMemberships from a dict
context_instance_segment_memberships_from_dict = ContextInstanceSegmentMemberships.from_dict(context_instance_segment_memberships_dict)

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