Class: Messaging::Channels::RCS
- Inherits:
-
Message
- Object
- Message
- Messaging::Channels::RCS
- Defined in:
- lib/vonage/messaging/channels/rcs.rb
Constant Summary collapse
- MESSAGE_TYPES =
['text', 'image', 'video', 'file', 'custom']
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ RCS
constructor
A new instance of RCS.
Constructor Details
#initialize(attributes = {}) ⇒ RCS
Returns a new instance of RCS.
9 10 11 12 13 14 15 16 |
# File 'lib/vonage/messaging/channels/rcs.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/rcs.rb', line 7 def data @data end |