Class: Twilio::REST::Studio::V1::FlowContext::EngagementContext::EngagementContextContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, flow_sid, engagement_sid) ⇒ EngagementContextContext

Initialize the EngagementContextContext

Parameters:

  • version (Version)

    Version that contains the resource

  • flow_sid (String)

    The unique SID identifier of the Flow.

  • engagement_sid (String)

    The unique SID identifier of the Engagement.



83
84
85
86
87
88
89
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 83

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

#fetchEngagementContextInstance

Fetch a EngagementContextInstance

Returns:



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 94

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  EngagementContextInstance.new(
      @version,
      payload,
      flow_sid: @solution[:flow_sid],
      engagement_sid: @solution[:engagement_sid],
  )
end

#to_sObject

Provide a user friendly representation



113
114
115
116
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement/engagement_context.rb', line 113

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Studio.V1.EngagementContextContext #{context}>"
end