FilterOption
Properties
| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| filter_id |
str |
|
[optional] |
| name |
str |
|
[optional] |
| count |
int |
|
[optional] |
Example
from odm_api.models.filter_option import FilterOption
# TODO update the JSON string below
json = "{}"
# create an instance of FilterOption from a JSON string
filter_option_instance = FilterOption.from_json(json)
# print the JSON string representation of the object
print(FilterOption.to_json())
# convert the object into a dict
filter_option_dict = filter_option_instance.to_dict()
# create an instance of FilterOption from a dict
filter_option_from_dict = FilterOption.from_dict(filter_option_dict)
[Back to Model list] [Back to API list] [Back to README]