Class: Twilio::REST::Content::V1::ContentList::FlowsPageComponent

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

Returns a new instance of FlowsPageComponent.



217
218
219
220
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 217

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

Instance Attribute Details

#labelObject

Parameters:



216
217
218
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 216

def label
  @label
end

#typeObject

Parameters:



216
217
218
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 216

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



221
222
223
224
225
226
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 221

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