Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

NoResultsResponseFacetGroupsInner

Properties

Name Type Description Notes
name str [optional]
title str [optional]
facet_fields List[str] [optional]

Example

from igvf_client.models.no_results_response_facet_groups_inner import NoResultsResponseFacetGroupsInner

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

# convert the object into a dict
no_results_response_facet_groups_inner_dict = no_results_response_facet_groups_inner_instance.to_dict()
# create an instance of NoResultsResponseFacetGroupsInner from a dict
no_results_response_facet_groups_inner_from_dict = NoResultsResponseFacetGroupsInner.from_dict(no_results_response_facet_groups_inner_dict)

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