Filter has the values and counts for value in a column.
| Name | Type | Description | Notes |
|---|---|---|---|
| count | int | The number of times this item is included in the result. | [optional] |
| value | str | The value of the column that will be filtered. | [optional] |
from ibm_gdsc_sdk_saas.models.ecosystemv3_filter import Ecosystemv3Filter
# TODO update the JSON string below
json = "{}"
# create an instance of Ecosystemv3Filter from a JSON string
ecosystemv3_filter_instance = Ecosystemv3Filter.from_json(json)
# print the JSON string representation of the object
print(Ecosystemv3Filter.to_json())
# convert the object into a dict
ecosystemv3_filter_dict = ecosystemv3_filter_instance.to_dict()
# create an instance of Ecosystemv3Filter from a dict
ecosystemv3_filter_from_dict = Ecosystemv3Filter.from_dict(ecosystemv3_filter_dict)