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.



309
310
311
312
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 309

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

Instance Attribute Details

#bodyObject

Parameters:

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


308
309
310
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 308

def body
  @body
end

#cardsObject

Parameters:

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


308
309
310
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 308

def cards
  @cards
end

Instance Method Details

#to_json(options = {}) ⇒ Object



313
314
315
316
317
318
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 313

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