Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

Ecosystemv3FilterField

The Filters that can be applied to the given notifications.

Properties

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]

Example

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)

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