Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.52 KB

File metadata and controls

33 lines (24 loc) · 1.52 KB

Contexts

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources [optional]
total_count int The number of contexts [optional]
environment_id str The environment ID where the context was evaluated
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[ContextRecord] A collection of contexts. Can include multiple versions of contexts that have the same <code>kind</code> and <code>key</code>, but different <code>applicationId</code>s.

Example

from launchdarkly_api.models.contexts import Contexts

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

# convert the object into a dict
contexts_dict = contexts_instance.to_dict()
# create an instance of Contexts from a dict
contexts_from_dict = Contexts.from_dict(contexts_dict)

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