Article

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
article_resultsArticleResults

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]