Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.65 KB

File metadata and controls

32 lines (23 loc) · 1.65 KB

ContextInstanceSearch

Properties

Name Type Description Notes
filter str A collection of context instance filters [optional]
sort str Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying <code>ts</code> for this value, or descending order by specifying <code>-ts</code>. [optional]
limit int Specifies the maximum number of items in the collection to return (max: 50, default: 20) [optional]
continuation_token str Limits results to context instances with sort values after the value specified. You can use this for pagination, however, we recommend using the <code>next</code> link instead, because this value is an obfuscated string. [optional]

Example

from launchdarkly_api.models.context_instance_search import ContextInstanceSearch

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

# convert the object into a dict
context_instance_search_dict = context_instance_search_instance.to_dict()
# create an instance of ContextInstanceSearch from a dict
context_instance_search_from_dict = ContextInstanceSearch.from_dict(context_instance_search_dict)

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