Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

File metadata and controls

34 lines (25 loc) · 1.38 KB

AiConfigsFilter

Properties

Name Type Description Notes
type str Filter type. One of [contextAttribute, eventProperty, group]
attribute str If not a group node, the context attribute name or event property name to filter on [optional]
op str
values List[object] The context attribute / event property values or group member nodes
context_kind str For context attribute filters, the context kind. [optional]
negate bool If set, then take the inverse of the operator. 'in' becomes 'not in'.

Example

from launchdarkly_api.models.ai_configs_filter import AiConfigsFilter

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

# convert the object into a dict
ai_configs_filter_dict = ai_configs_filter_instance.to_dict()
# create an instance of AiConfigsFilter from a dict
ai_configs_filter_from_dict = AiConfigsFilter.from_dict(ai_configs_filter_dict)

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