Profile picture URL of the user
| Name | Type | Description | Notes |
|---|
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)