Class: Twilio::REST::Content::V1::ContentList::TwilioCarousel

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

Returns a new instance of TwilioCarousel.



331
332
333
334
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 331

def initialize(payload)
        @body = payload["body"]
        @cards = payload["cards"]
end

Instance Attribute Details

#bodyObject

Parameters:

  • : (body)
    String
  • : (cards)
    Array<ContentList.CarouselCard>


330
331
332
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 330

def body
  @body
end

#cardsObject

Parameters:

  • : (body)
    String
  • : (cards)
    Array<ContentList.CarouselCard>


330
331
332
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 330

def cards
  @cards
end

Instance Method Details

#to_json(options = {}) ⇒ Object



335
336
337
338
339
340
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 335

def to_json(options = {})
{
        "body": @body,
        "cards": @cards,
}.to_json(options)
end