Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 935 Bytes

File metadata and controls

31 lines (22 loc) · 935 Bytes

SearchFacet

Properties

Name Type Description Notes
var_field str [optional]
title str [optional]
terms List[object] [optional]

Example

from igvf_client.models.search_facet import SearchFacet

# TODO update the JSON string below
json = "{}"
# create an instance of SearchFacet from a JSON string
search_facet_instance = SearchFacet.from_json(json)
# print the JSON string representation of the object
print(SearchFacet.to_json())

# convert the object into a dict
search_facet_dict = search_facet_instance.to_dict()
# create an instance of SearchFacet from a dict
search_facet_from_dict = SearchFacet.from_dict(search_facet_dict)

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