ArticleCoverMediaInfo

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName[optional]
color_infoArticleCoverMediaColorInfo
original_img_heightint
original_img_urlstr
original_img_widthint

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]