Class: Twilio::REST::Content::V1::ContentList::FlowsPageComponent
- Inherits:
-
Object
- Object
- Twilio::REST::Content::V1::ContentList::FlowsPageComponent
- Defined in:
- lib/twilio-ruby/rest/content/v1/content.rb
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(payload) ⇒ FlowsPageComponent
constructor
A new instance of FlowsPageComponent.
- #to_json(options = {}) ⇒ Object
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
#label ⇒ Object
216 217 218 |
# File 'lib/twilio-ruby/rest/content/v1/content.rb', line 216 def label @label end |
#type ⇒ Object
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( = {}) { "label": @label, "type": @type, }.to_json() end |