Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

ContextInstanceEvaluations

Properties

Name Type Description Notes
items List[ContextInstanceEvaluation] Details on the flag evaluations for this context instance
total_count int The number of flags [optional]
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.context_instance_evaluations import ContextInstanceEvaluations

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

# convert the object into a dict
context_instance_evaluations_dict = context_instance_evaluations_instance.to_dict()
# create an instance of ContextInstanceEvaluations from a dict
context_instance_evaluations_from_dict = ContextInstanceEvaluations.from_dict(context_instance_evaluations_dict)

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