You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique ID of the event. May be used to ensure that an event is not processed twice in the case of a webhook that is re-tried due to an error or timeout.
[optional]
type
str
The type of the event. Will match one of the subscribed triggers for your webhook.
[optional]
created_at
str
A timestamp signifying when the event was generated. Formatted as `YYYY-MM-DDThh:mm:ss.SSSZ`.
fromsunshine_conversations_client.model.conversation_message_delivery_channel_eventimportConversationMessageDeliveryChannelEvent# TODO update the JSON string belowjson="{}"# create an instance of ConversationMessageDeliveryChannelEvent from a JSON stringconversation_message_delivery_channel_event_instance=ConversationMessageDeliveryChannelEvent.from_json(json)
# print the JSON string representation of the objectprint(ConversationMessageDeliveryChannelEvent.to_json())
# convert the object into a dictconversation_message_delivery_channel_event_dict=conversation_message_delivery_channel_event_instance.to_dict()
# create an instance of ConversationMessageDeliveryChannelEvent from a dictconversation_message_delivery_channel_event_from_dict=ConversationMessageDeliveryChannelEvent.from_dict(conversation_message_delivery_channel_event_dict)