Object hosting user profile information.
| Name | Type | Description | Notes |
|---|---|---|---|
| given_name | str | The user's given name (first name). | [optional] |
| surname | str | The user's surname (last name). | [optional] |
| str | The user's email address. | [optional] | |
| avatar_url | str | The user's avatar. | [optional] |
| locale | str | End-user's locale information in BCP 47 format. | [optional] |
from sunshine_conversations_client.model.profile import Profile
# TODO update the JSON string below
json = "{}"
# create an instance of Profile from a JSON string
profile_instance = Profile.from_json(json)
# print the JSON string representation of the object
print(Profile.to_json())
# convert the object into a dict
profile_dict = profile_instance.to_dict()
# create an instance of Profile from a dict
profile_from_dict = Profile.from_dict(profile_dict)