Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.3 KB

File metadata and controls

35 lines (26 loc) · 1.3 KB

NoResultsResponseFacetsInner

Properties

Name Type Description Notes
var_field str [optional]
title str [optional]
terms object [optional]
total int [optional]
type str [optional]
appended bool [optional]
open_on_load bool [optional]

Example

from igvf_client.models.no_results_response_facets_inner import NoResultsResponseFacetsInner

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

# convert the object into a dict
no_results_response_facets_inner_dict = no_results_response_facets_inner_instance.to_dict()
# create an instance of NoResultsResponseFacetsInner from a dict
no_results_response_facets_inner_from_dict = NoResultsResponseFacetsInner.from_dict(no_results_response_facets_inner_dict)

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