Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 842 Bytes

File metadata and controls

29 lines (20 loc) · 842 Bytes

Article

Properties

Name Type Description Notes
article_results ArticleResults

Example

from twitter_openapi_python_generated.models.article import Article

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

# convert the object into a dict
article_dict = article_instance.to_dict()
# create an instance of Article from a dict
article_from_dict = Article.from_dict(article_dict)

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