Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.23 KB

File metadata and controls

34 lines (28 loc) · 1.23 KB

Zernio::WebhookPayloadMessageEdited

Properties

Name Type Description Notes
id String
event String
message InboxWebhookMessage
edit_history Array<InboxMessageEditHistoryEntry> Prior versions of the message, oldest first.
edit_count Integer Total number of edits applied to this message.
edited_at Time When the most recent edit happened.
conversation InboxWebhookConversation
account InboxWebhookAccount
timestamp Time UTC time at which Zernio generated this event (set once when the event payload is built, before delivery is queued). Retries and redeliveries keep the original value, so it reflects the event, not the delivery attempt.

Example

require 'zernio-sdk'

instance = Zernio::WebhookPayloadMessageEdited.new(
  id: null,
  event: null,
  message: null,
  edit_history: null,
  edit_count: null,
  edited_at: null,
  conversation: null,
  account: null,
  timestamp: null
)