The Filters that can be applied to the given notifications.
| Name | Type | Description | Notes |
|---|---|---|---|
| filters | List[Ecosystemv3Filter] | The filters that are eligable to be filtered on. | [optional] |
| name | str | The name of the filter field. | [optional] |
from ibm_gdsc_sdk_saas.models.ecosystemv3_filter_field import Ecosystemv3FilterField
# TODO update the JSON string below
json = "{}"
# create an instance of Ecosystemv3FilterField from a JSON string
ecosystemv3_filter_field_instance = Ecosystemv3FilterField.from_json(json)
# print the JSON string representation of the object
print(Ecosystemv3FilterField.to_json())
# convert the object into a dict
ecosystemv3_filter_field_dict = ecosystemv3_filter_field_instance.to_dict()
# create an instance of Ecosystemv3FilterField from a dict
ecosystemv3_filter_field_from_dict = Ecosystemv3FilterField.from_dict(ecosystemv3_filter_field_dict)