Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 947 Bytes

File metadata and controls

30 lines (24 loc) · 947 Bytes

Cfchat::PublicContactCreateUpdatePayload

Properties

Name Type Description Notes
identifier String External identifier of the contact [optional]
identifier_hash String Identifier hash prepared for HMAC authentication [optional]
email String Email of the contact [optional]
name String Name of the contact [optional]
phone_number String Phone number of the contact [optional]
avatar_url String The url to a jpeg, png file for the user avatar [optional]
custom_attributes Object Custom attributes of the customer [optional]

Example

require 'cfchat'

instance = Cfchat::PublicContactCreateUpdatePayload.new(
  identifier: null,
  identifier_hash: null,
  email: null,
  name: null,
  phone_number: null,
  avatar_url: null,
  custom_attributes: null
)