Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

Auditv3Filter

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 table. [optional]
value str The value of the column that will be filtered. [optional]

Example

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)

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