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

Latest commit

 

History

History
24 lines (18 loc) · 647 Bytes

File metadata and controls

24 lines (18 loc) · 647 Bytes

Cfchat::UserCreateUpdatePayload

Properties

Name Type Description Notes
name String Name of the user [optional]
email String Email of the user [optional]
password String Password must contain uppercase, lowercase letters, number and a special character [optional]
custom_attributes Object Custom attributes you want to associate with the user [optional]

Example

require 'cfchat'

instance = Cfchat::UserCreateUpdatePayload.new(
  name: null,
  email: null,
  password: null,
  custom_attributes: null
)