TimelineTimelineCursor

September 29, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
cursor_typeCursorType
display_treatmentDisplayTreatment[optional]
entry_typeContentEntryType[optional]
item_typeContentEntryType[optional]
stop_on_empty_responsebool[optional]
valuestr

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]