| Name | Type | Description | Notes |
|---|---|---|---|
| graph | List[PhenotypicFeature] | [optional] | |
| id | str | [optional] | |
| type | List[str] | [optional] | |
| total | int | [optional] | |
| facets | List[SearchFacet] | [optional] |
from igvf_client.models.phenotypic_feature_results import PhenotypicFeatureResults
# TODO update the JSON string below
json = "{}"
# create an instance of PhenotypicFeatureResults from a JSON string
phenotypic_feature_results_instance = PhenotypicFeatureResults.from_json(json)
# print the JSON string representation of the object
print(PhenotypicFeatureResults.to_json())
# convert the object into a dict
phenotypic_feature_results_dict = phenotypic_feature_results_instance.to_dict()
# create an instance of PhenotypicFeatureResults from a dict
phenotypic_feature_results_from_dict = PhenotypicFeatureResults.from_dict(phenotypic_feature_results_dict)