# MessenteApi::DeliveryResult ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **status** | [**Status**](Status.md) | | [optional] | | **channel** | [**Channel**](Channel.md) | | [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**](ErrorCodeOmnichannelMachine.md) | | [optional] | | **timestamp** | **Time** | When this status was received by Omnichannel API | [optional] | | **price_info** | [**PriceInfo**](PriceInfo.md) | | [optional] | | **sender** | **String** | the sender of the message | [optional] | ## Example ```ruby 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 ) ```