TimelineTrend

May 7, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
imagesList[TrendImage][optional]
is_ai_trendbool[optional]
item_typeContentItemType[optional]
namestr
social_contextSocialContextUnion[optional]
thumbnail_imageThumbnailImage[optional]
trend_metadataTrendMetadata
trend_urlSocialContextLandingUrl

Example

from twitter_openapi_python_generated.models.timeline_trend import TimelineTrend

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

# convert the object into a dict
timeline_trend_dict = timeline_trend_instance.to_dict()
# create an instance of TimelineTrend from a dict
timeline_trend_from_dict = TimelineTrend.from_dict(timeline_trend_dict)

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