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