Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 789 Bytes

File metadata and controls

26 lines (20 loc) · 789 Bytes

SunshineConversationsClient::Profile

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]
email 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
)