TimelineUser

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
item_typeContentItemType
social_contextSocialContextUnion[optional]
user_display_typestr
user_resultsUserResults

Example

from twitter_openapi_python_generated.models.timeline_user import TimelineUser

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

# convert the object into a dict
timeline_user_dict = timeline_user_instance.to_dict()
# create an instance of TimelineUser from a dict
timeline_user_from_dict = TimelineUser.from_dict(timeline_user_dict)

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