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

Latest commit

 

History

History
34 lines (28 loc) · 1.1 KB

File metadata and controls

34 lines (28 loc) · 1.1 KB

Cfchat::Message

Properties

Name Type Description Notes
content String The text content of the message [optional]
content_type String The type of the template message [optional]
content_attributes Object The content attributes for each content_type [optional]
message_type String The type of the message [optional]
created_at Integer The time at which message was created [optional]
private Boolean The flags which shows whether the message is private or not [optional]
attachment Object The file object attached to the image [optional]
sender Object User/Agent/AgentBot object [optional]
conversation_id Float ID of the conversation [optional]

Example

require 'cfchat'

instance = Cfchat::Message.new(
  content: null,
  content_type: null,
  content_attributes: null,
  message_type: null,
  created_at: null,
  private: null,
  attachment: null,
  sender: null,
  conversation_id: null
)