Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

Ecosystemv3Filter

Filter has the values and counts for value in a column.

Properties

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]

Example

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)

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