The filter value.
Name | Type | Description | Notes |
---|
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)