Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 940 Bytes

File metadata and controls

34 lines (25 loc) · 940 Bytes

Clause

Properties

Name Type Description Notes
id str [optional]
attribute str
op str
values List[object]
context_kind str [optional]
negate bool

Example

from launchdarkly_api.models.clause import Clause

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

# convert the object into a dict
clause_dict = clause_instance.to_dict()
# create an instance of Clause from a dict
clause_from_dict = Clause.from_dict(clause_dict)

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