Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.97 KB

File metadata and controls

49 lines (40 loc) · 1.97 KB

MediaExtended

Properties

Name Type Description Notes
additional_media_info AdditionalMediaInfo [optional]
allow_download_status AllowDownloadStatus [optional]
display_url str
expanded_url str
ext_alt_text str [optional]
ext_media_availability ExtMediaAvailability [optional]
features object [optional]
id_str str
indices List[int]
media_stats MediaStats [optional]
media_key str
media_results MediaResults [optional]
media_url_https str
original_info MediaOriginalInfo
sensitive_media_warning SensitiveMediaWarning [optional]
sizes MediaSizes
source_status_id_str str [optional]
source_user_id_str str [optional]
type str
url str
video_info MediaVideoInfo [optional]

Example

from twitter_openapi_python_generated.models.media_extended import MediaExtended

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

# convert the object into a dict
media_extended_dict = media_extended_instance.to_dict()
# create an instance of MediaExtended from a dict
media_extended_from_dict = MediaExtended.from_dict(media_extended_dict)

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