SunshineConversationsClient::Profile
August 27, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| given_name | String | The user's given name (first name). | [optional] |
| surname | String | The user's surname (last name). | [optional] |
| String | The user's email address. | [optional] | |
| avatar_url | String | The user's avatar. | [optional] |
| locale | String | End-user's locale information in BCP 47 format. | [optional] |
Example
require 'sunshine-conversations-client'
instance = SunshineConversationsClient::Profile.new(
given_name: Jane,
surname: Doe,
email: jane.doe@gmail.com,
avatar_url: https://s3.amazonaws.com/avatar.jpg,
locale: fr-CA
)