Class: Twilio::REST::Content::V1::ContentList::QuickReplyAction

Inherits:
Object
  • Object
show all
Defined in:
lib/twilio-ruby/rest/content/v1/content.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(payload) ⇒ QuickReplyAction

Returns a new instance of QuickReplyAction.



275
276
277
278
279
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 275

def initialize(payload)
        @type = payload["type"]
        @title = payload["title"]
        @id = payload["id"]
end

Instance Attribute Details

#idObject

Parameters:

  • : (type)
    QuickReplyActionType
  • : (title)
    String
  • : (id)
    String


274
275
276
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 274

def id
  @id
end

#titleObject

Parameters:

  • : (type)
    QuickReplyActionType
  • : (title)
    String
  • : (id)
    String


274
275
276
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 274

def title
  @title
end

#typeObject

Parameters:

  • : (type)
    QuickReplyActionType
  • : (title)
    String
  • : (id)
    String


274
275
276
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 274

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



280
281
282
283
284
285
286
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 280

def to_json(options = {})
{
        "type": @type,
        "title": @title,
        "id": @id,
}.to_json(options)
end