AppliedFilter
Properties
| Name |
Type |
Description |
Notes |
| type |
str |
|
[optional] |
| filter_option_id |
str |
|
[optional] |
| match |
str |
|
[optional] |
| mode |
str |
|
[optional] |
Example
from odm_api.models.applied_filter import AppliedFilter
# TODO update the JSON string below
json = "{}"
# create an instance of AppliedFilter from a JSON string
applied_filter_instance = AppliedFilter.from_json(json)
# print the JSON string representation of the object
print(AppliedFilter.to_json())
# convert the object into a dict
applied_filter_dict = applied_filter_instance.to_dict()
# create an instance of AppliedFilter from a dict
applied_filter_from_dict = AppliedFilter.from_dict(applied_filter_dict)
[Back to Model list] [Back to API list] [Back to README]