Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 888 Bytes

File metadata and controls

29 lines (20 loc) · 888 Bytes

ProfilePicUrl

Profile picture URL of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.profile_pic_url import ProfilePicUrl

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

# convert the object into a dict
profile_pic_url_dict = profile_pic_url_instance.to_dict()
# create an instance of ProfilePicUrl from a dict
profile_pic_url_form_dict = profile_pic_url.from_dict(profile_pic_url_dict)

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