Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.67 KB

ConversationMessageDeliveryPayload.md

File metadata and controls

27 lines (20 loc) · 1.67 KB

SunshineConversationsClient::ConversationMessageDeliveryPayload

Properties

Name Type Description Notes
user User The user associated with the conversation. [optional]
conversation ConversationTruncated The conversation in which the message was sent. [optional]
message ConversationMessageDeliveryPayloadMessage [optional]
destination ConversationMessageDeliveryPayloadDestination [optional]
external_messages Array<ConversationMessageDeliveryPayloadExternalMessages> An array of objects representing the third-party messages associated with the event. The order of the external messages is not guaranteed to be the same across the different triggers. Note that some channels don’t expose message IDs, in which case this field will be unset. [optional]
is_final_event Boolean A boolean indicating whether the webhook is the final one for the `message.id` and `destination.type` pair. [optional]

Code Sample

require 'SunshineConversationsClient'

instance = SunshineConversationsClient::ConversationMessageDeliveryPayload.new(user: null,
                                 conversation: null,
                                 message: null,
                                 destination: null,
                                 external_messages: null,
                                 is_final_event: null)