Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.37 KB

TimelineTimelineCursor.md

File metadata and controls

35 lines (26 loc) · 1.37 KB

TimelineTimelineCursor

Properties

Name Type Description Notes
typename TypeName
cursor_type CursorType
display_treatment DisplayTreatment [optional]
entry_type ContentEntryType [optional]
item_type ContentEntryType [optional]
stop_on_empty_response bool [optional]
value str

Example

from twitter_openapi_python_generated.models.timeline_timeline_cursor import TimelineTimelineCursor

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

# convert the object into a dict
timeline_timeline_cursor_dict = timeline_timeline_cursor_instance.to_dict()
# create an instance of TimelineTimelineCursor from a dict
timeline_timeline_cursor_from_dict = TimelineTimelineCursor.from_dict(timeline_timeline_cursor_dict)

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