Class: Messaging::Channels::MMS
- Inherits:
-
Message
- Object
- Message
- Messaging::Channels::MMS
- Defined in:
- lib/vonage/messaging/channels/mms.rb
Constant Summary collapse
- MESSAGE_TYPES =
['image', 'vcard', 'audio', 'video']
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ MMS
constructor
A new instance of MMS.
Constructor Details
#initialize(attributes = {}) ⇒ MMS
Returns a new instance of MMS.
9 10 11 12 13 14 15 16 |
# File 'lib/vonage/messaging/channels/mms.rb', line 9 def initialize(attributes = {}) @type = attributes.fetch(:type, nil) @message = attributes.fetch(:message, nil) @opts = attributes.fetch(:opts, {}) @data = {} after_initialize! end |
Instance Attribute Details
#data ⇒ Object (readonly)
Returns the value of attribute data.
7 8 9 |
# File 'lib/vonage/messaging/channels/mms.rb', line 7 def data @data end |