Class: Twilio::REST::Content::V1::ContentList::TwilioSchedule

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(payload) ⇒ TwilioSchedule

Returns a new instance of TwilioSchedule.



486
487
488
489
490
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 486

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

Instance Attribute Details

#idObject

Parameters:



485
486
487
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 485

def id
  @id
end

#time_slotsObject

Parameters:



485
486
487
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 485

def time_slots
  @time_slots
end

#titleObject

Parameters:



485
486
487
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 485

def title
  @title
end

Instance Method Details

#to_json(options = {}) ⇒ Object



491
492
493
494
495
496
497
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 491

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