Class: Twilio::REST::Studio::V1::FlowContext::EngagementContext::EngagementContextContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Studio::V1::FlowContext::EngagementContext::EngagementContextContext
- Defined in:
- lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb
Instance Method Summary collapse
-
#fetch ⇒ EngagementContextInstance
Fetch the EngagementContextInstance.
-
#initialize(version, flow_sid, engagement_sid) ⇒ EngagementContextContext
constructor
Initialize the EngagementContextContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, flow_sid, engagement_sid) ⇒ EngagementContextContext
Initialize the EngagementContextContext
77 78 79 80 81 82 83 |
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 77 def initialize(version, flow_sid, engagement_sid) super(version) # Path Solution @solution = {flow_sid: flow_sid, engagement_sid: engagement_sid, } @uri = "/Flows/#{@solution[:flow_sid]}/Engagements/#{@solution[:engagement_sid]}/Context" end |
Instance Method Details
#fetch ⇒ EngagementContextInstance
Fetch the EngagementContextInstance
88 89 90 91 92 93 94 95 96 97 |
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 88 def fetch payload = @version.fetch('GET', @uri) EngagementContextInstance.new( @version, payload, flow_sid: @solution[:flow_sid], engagement_sid: @solution[:engagement_sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
108 109 110 111 |
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 108 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Studio.V1.EngagementContextContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
101 102 103 104 |
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 101 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Studio.V1.EngagementContextContext #{context}>" end |