Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

File metadata and controls

33 lines (24 loc) · 1.11 KB

TimelineUser

Properties

Name Type Description Notes
typename TypeName
item_type ContentItemType
social_context SocialContextUnion [optional]
user_display_type str
user_results UserResults

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]