Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 925 Bytes

File metadata and controls

29 lines (20 loc) · 925 Bytes

AnalysisResults

Properties

Name Type Description Notes
result Tweet

Example

from twitter_openapi_python_generated.models.analysis_results import AnalysisResults

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

# convert the object into a dict
analysis_results_dict = analysis_results_instance.to_dict()
# create an instance of AnalysisResults from a dict
analysis_results_from_dict = AnalysisResults.from_dict(analysis_results_dict)

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