Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

File metadata and controls

35 lines (26 loc) · 1.17 KB

ArticleResult

Properties

Name Type Description Notes
cover_media ArticleCoverMedia
id str
lifecycle_state ArticleLifecycleState [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]