TimelineTimelineItem

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
client_event_infoClientEventInfo[optional]
entry_typeContentEntryType
feedback_infoDict[str, object][optional]
item_contentItemContentUnion

Example

from twitter_openapi_python_generated.models.timeline_timeline_item import TimelineTimelineItem

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

# convert the object into a dict
timeline_timeline_item_dict = timeline_timeline_item_instance.to_dict()
# create an instance of TimelineTimelineItem from a dict
timeline_timeline_item_from_dict = TimelineTimelineItem.from_dict(timeline_timeline_item_dict)

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