Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

AnalysisStepResults

Properties

Name Type Description Notes
graph List[AnalysisStep] [optional]
id str [optional]
type List[str] [optional]
total int [optional]
facets List[SearchFacet] [optional]

Example

from igvf_client.models.analysis_step_results import AnalysisStepResults

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

# convert the object into a dict
analysis_step_results_dict = analysis_step_results_instance.to_dict()
# create an instance of AnalysisStepResults from a dict
analysis_step_results_from_dict = AnalysisStepResults.from_dict(analysis_step_results_dict)

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