Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.38 KB

File metadata and controls

38 lines (29 loc) · 1.38 KB

ArticleResult

Properties

Name Type Description Notes
content_state Dict[str, object] [optional]
cover_media ArticleCoverMedia [optional]
id str
is_grok_summary_eligible bool [optional]
lifecycle_state ArticleLifecycleState [optional]
media_entities List[ArticleCoverMedia] [optional]
metadata ArticleMetadata
preview_text str
rest_id str
title str

Example

from twitter_openapi_python_generated.models.article_result import ArticleResult

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

# convert the object into a dict
article_result_dict = article_result_instance.to_dict()
# create an instance of ArticleResult from a dict
article_result_from_dict = ArticleResult.from_dict(article_result_dict)

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