Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

TimelineTimelineItem

Properties

Name Type Description Notes
typename TypeName
client_event_info ClientEventInfo [optional]
entry_type ContentEntryType
feedback_info Dict[str, object] [optional]
item_content ItemContentUnion

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]