Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 833 Bytes

FilterValue.md

File metadata and controls

29 lines (20 loc) · 833 Bytes

FilterValue

The filter value.

Properties

Name Type Description Notes

Example

from wordlift_client.models.filter_value import FilterValue

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

# convert the object into a dict
filter_value_dict = filter_value_instance.to_dict()
# create an instance of FilterValue from a dict
filter_value_from_dict = FilterValue.from_dict(filter_value_dict)

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