Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

SegmentUserState

Properties

Name Type Description Notes
included SegmentUserList [optional]
excluded SegmentUserList [optional]

Example

from launchdarkly_api.models.segment_user_state import SegmentUserState

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

# convert the object into a dict
segment_user_state_dict = segment_user_state_instance.to_dict()
# create an instance of SegmentUserState from a dict
segment_user_state_from_dict = SegmentUserState.from_dict(segment_user_state_dict)

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