Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.59 KB

File metadata and controls

35 lines (26 loc) · 2.59 KB

ConversationMessageDeliveryFailureEventAllOfPayload

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 List[ConversationMessageDeliveryPayloadExternalMessagesInner] 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 bool A boolean indicating whether the webhook is the final one for the `message.id` and `destination.type` pair. [optional]
error ConversationMessageDeliveryFailureEventAllOfPayloadAllOfError [optional]

Example

from sunshine_conversations_client.model.conversation_message_delivery_failure_event_all_of_payload import ConversationMessageDeliveryFailureEventAllOfPayload

# TODO update the JSON string below
json = "{}"
# create an instance of ConversationMessageDeliveryFailureEventAllOfPayload from a JSON string
conversation_message_delivery_failure_event_all_of_payload_instance = ConversationMessageDeliveryFailureEventAllOfPayload.from_json(json)
# print the JSON string representation of the object
print(ConversationMessageDeliveryFailureEventAllOfPayload.to_json())

# convert the object into a dict
conversation_message_delivery_failure_event_all_of_payload_dict = conversation_message_delivery_failure_event_all_of_payload_instance.to_dict()
# create an instance of ConversationMessageDeliveryFailureEventAllOfPayload from a dict
conversation_message_delivery_failure_event_all_of_payload_from_dict = ConversationMessageDeliveryFailureEventAllOfPayload.from_dict(conversation_message_delivery_failure_event_all_of_payload_dict)

[Back to Model list] [Back to API list] [Back to README]