Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

ListExampleAnalysesOutputBody

Properties

Name Type Description Notes
analyses List[Example] List of example analyses

Example

from revengai.models.list_example_analyses_output_body import ListExampleAnalysesOutputBody

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

# convert the object into a dict
list_example_analyses_output_body_dict = list_example_analyses_output_body_instance.to_dict()
# create an instance of ListExampleAnalysesOutputBody from a dict
list_example_analyses_output_body_from_dict = ListExampleAnalysesOutputBody.from_dict(list_example_analyses_output_body_dict)

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