Sha256: 8b71667ce663895c3fd0e9d8907d36dc207a9cb6accaccb1ed1a7af8f878a395
Contents?: true
Size: 717 Bytes
Versions: 1
Compression:
Stored size: 717 Bytes
Contents
module TD::Types # A message failed to send. # Be aware that some messages being sent can be irrecoverably deleted, in which case updateDeleteMessages will be # received instead of this update. # # @attr message [TD::Types::Message] Contains information about the message that failed to send. # @attr old_message_id [Integer] The previous temporary message identifier. # @attr error_code [Integer] An error code. # @attr error_message [String] Error message. class Update::MessageSendFailed < Update attribute :message, TD::Types::Message attribute :old_message_id, TD::Types::Integer attribute :error_code, TD::Types::Integer attribute :error_message, TD::Types::String end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.0.0 | lib/tdlib/types/update/message_send_failed.rb |