Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.28 KB

ConversationsMessage.md

File metadata and controls

28 lines (18 loc) · 1.28 KB

SibApiV3Sdk.ConversationsMessage

Properties

Name Type Description Notes
id String Message ID. It can be used for further manipulations with the message. [optional]
type String \"agent\" for agents’ messages, \"visitor\" for visitors’ messages. [optional]
text String Message text or name of the attached file [optional]
visitorId String visitor’s ID [optional]
agentId String ID of the agent on whose behalf the message was sent (only in messages sent by an agent). [optional]
agentName String Agent’s name as displayed to the visitor. Only in the messages sent by an agent. [optional]
createdAt Number Timestamp in milliseconds. [optional]
isPushed Boolean true for pushed messages [optional]
receivedFrom String In two-way integrations, messages sent via REST API can be marked with receivedFrom property and then filtered out when received in a webhook to avoid infinite loop. [optional]
file ConversationsMessageFile [optional]

Enum: TypeEnum

  • agent (value: "agent")

  • visitor (value: "visitor")