Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

ArticleCoverMediaInfo

Properties

Name Type Description Notes
typename TypeName [optional]
color_info ArticleCoverMediaColorInfo
original_img_height int
original_img_url str
original_img_width int

Example

from twitter_openapi_python_generated.models.article_cover_media_info import ArticleCoverMediaInfo

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

# convert the object into a dict
article_cover_media_info_dict = article_cover_media_info_instance.to_dict()
# create an instance of ArticleCoverMediaInfo from a dict
article_cover_media_info_from_dict = ArticleCoverMediaInfo.from_dict(article_cover_media_info_dict)

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