Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.11 KB

File metadata and controls

34 lines (25 loc) · 1.11 KB

UserSegmentRule

Properties

Name Type Description Notes
id str [optional]
clauses List[Clause]
weight int [optional]
rollout_context_kind str [optional]
bucket_by str [optional]
description str [optional]

Example

from launchdarkly_api.models.user_segment_rule import UserSegmentRule

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

# convert the object into a dict
user_segment_rule_dict = user_segment_rule_instance.to_dict()
# create an instance of UserSegmentRule from a dict
user_segment_rule_from_dict = UserSegmentRule.from_dict(user_segment_rule_dict)

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