Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 849 Bytes

File metadata and controls

29 lines (20 loc) · 849 Bytes

UserAvatar

Properties

Name Type Description Notes
image_url str

Example

from twitter_openapi_python_generated.models.user_avatar import UserAvatar

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

# convert the object into a dict
user_avatar_dict = user_avatar_instance.to_dict()
# create an instance of UserAvatar from a dict
user_avatar_from_dict = UserAvatar.from_dict(user_avatar_dict)

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