Class: Twilio::REST::Content::V1::ContentList::CarouselAction

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) ⇒ CarouselAction

Returns a new instance of CarouselAction.



101
102
103
104
105
106
107
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 101

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

Instance Attribute Details

#idObject

Parameters:

  • : (type)
    CarouselActionType
  • : (title)
    String
  • : (url)
    String
  • : (phone)
    String
  • : (id)
    String


100
101
102
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 100

def id
  @id
end

#phoneObject

Parameters:

  • : (type)
    CarouselActionType
  • : (title)
    String
  • : (url)
    String
  • : (phone)
    String
  • : (id)
    String


100
101
102
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 100

def phone
  @phone
end

#titleObject

Parameters:

  • : (type)
    CarouselActionType
  • : (title)
    String
  • : (url)
    String
  • : (phone)
    String
  • : (id)
    String


100
101
102
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 100

def title
  @title
end

#typeObject

Parameters:

  • : (type)
    CarouselActionType
  • : (title)
    String
  • : (url)
    String
  • : (phone)
    String
  • : (id)
    String


100
101
102
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 100

def type
  @type
end

#urlObject

Parameters:

  • : (type)
    CarouselActionType
  • : (title)
    String
  • : (url)
    String
  • : (phone)
    String
  • : (id)
    String


100
101
102
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 100

def url
  @url
end

Instance Method Details

#to_json(options = {}) ⇒ Object



108
109
110
111
112
113
114
115
116
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 108

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