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 table. | [optional] |
| value | str | The value of the column that will be filtered. | [optional] |
from ibm_gdsc_sdk_saas.models.auditv3_filter import Auditv3Filter
# TODO update the JSON string below
json = "{}"
# create an instance of Auditv3Filter from a JSON string
auditv3_filter_instance = Auditv3Filter.from_json(json)
# print the JSON string representation of the object
print(Auditv3Filter.to_json())
# convert the object into a dict
auditv3_filter_dict = auditv3_filter_instance.to_dict()
# create an instance of Auditv3Filter from a dict
auditv3_filter_from_dict = Auditv3Filter.from_dict(auditv3_filter_dict)