Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.4 KB

File metadata and controls

37 lines (28 loc) · 1.4 KB

TimelineTrend

Properties

Name Type Description Notes
typename TypeName
images List[TrendImage] [optional]
is_ai_trend bool [optional]
item_type ContentItemType [optional]
name str
social_context SocialContextUnion [optional]
thumbnail_image ThumbnailImage [optional]
trend_metadata TrendMetadata
trend_url SocialContextLandingUrl

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]