Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

ArticlePreview

Properties

Name Type Description Notes
article_id int
cover_media ArticleCoverMedia [optional]
preview_text str
title str

Example

from twitter_openapi_python_generated.models.article_preview import ArticlePreview

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

# convert the object into a dict
article_preview_dict = article_preview_instance.to_dict()
# create an instance of ArticlePreview from a dict
article_preview_from_dict = ArticlePreview.from_dict(article_preview_dict)

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