Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.16 KB

File metadata and controls

34 lines (25 loc) · 1.16 KB

Profile

Object hosting user profile information.

Properties

Name Type Description Notes
given_name str The user's given name (first name). [optional]
surname str The user's surname (last name). [optional]
email 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]

Example

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)

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