Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.01 KB

File metadata and controls

32 lines (26 loc) · 1.01 KB

MessenteApi::DeliveryResult

Properties

Name Type Description Notes
status Status [optional]
channel Channel [optional]
message_id String Unique identifier for the message [optional]
error String Human-readable description of what went wrong, null in case of success or if the message has not been processed yet [optional]
err ErrorCodeOmnichannelMachine [optional]
timestamp Time When this status was received by Omnichannel API [optional]
price_info PriceInfo [optional]
sender String the sender of the message [optional]

Example

require 'messente_api'

instance = MessenteApi::DeliveryResult.new(
  status: null,
  channel: null,
  message_id: null,
  error: null,
  err: null,
  timestamp: null,
  price_info: null,
  sender: null
)