| Name |
Type |
Description |
Notes |
| links |
Dict[str, Link] |
The location and content type of related resources |
[optional] |
| total_count |
int |
The number of unique context instances |
[optional] |
| environment_id |
str |
The environment ID |
|
| continuation_token |
str |
An obfuscated string that references the last context instance on the previous page of results. You can use this for pagination, however, we recommend using the <code>next</code> link instead. |
[optional] |
| items |
List[ContextInstanceRecord] |
A collection of context instances. Can include multiple versions of context instances that have the same <code>id</code>, but different <code>applicationId</code>s. |
|
from launchdarkly_api.models.context_instances import ContextInstances
# TODO update the JSON string below
json = "{}"
# create an instance of ContextInstances from a JSON string
context_instances_instance = ContextInstances.from_json(json)
# print the JSON string representation of the object
print(ContextInstances.to_json())
# convert the object into a dict
context_instances_dict = context_instances_instance.to_dict()
# create an instance of ContextInstances from a dict
context_instances_from_dict = ContextInstances.from_dict(context_instances_dict)
[Back to Model list] [Back to API list] [Back to README]