Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 959 Bytes

File metadata and controls

30 lines (21 loc) · 959 Bytes

SegmentUserList

Properties

Name Type Description Notes
add List[str] [optional]
remove List[str] [optional]

Example

from launchdarkly_api.models.segment_user_list import SegmentUserList

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

# convert the object into a dict
segment_user_list_dict = segment_user_list_instance.to_dict()
# create an instance of SegmentUserList from a dict
segment_user_list_from_dict = SegmentUserList.from_dict(segment_user_list_dict)

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