| 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 |
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)