Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.5 KB

File metadata and controls

37 lines (28 loc) · 1.5 KB

TimelineTimelineModule

Properties

Name Type Description Notes
typename TypeName
client_event_info ClientEventInfo [optional]
display_type DisplayType
entry_type ContentEntryType
feedback_info FeedbackInfo [optional]
footer Dict[str, object] [optional]
header Dict[str, object] [optional]
items List[ModuleItem] [optional]
metadata Dict[str, object] [optional]

Example

from twitter_openapi_python_generated.models.timeline_timeline_module import TimelineTimelineModule

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

# convert the object into a dict
timeline_timeline_module_dict = timeline_timeline_module_instance.to_dict()
# create an instance of TimelineTimelineModule from a dict
timeline_timeline_module_from_dict = TimelineTimelineModule.from_dict(timeline_timeline_module_dict)

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