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

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

Defined Under Namespace

Classes: EngagementContextContext, EngagementContextInstance, EngagementContextList, EngagementContextPage, StepContext, StepInstance, StepList, StepPage

Instance Method Summary collapse

Constructor Details

#initialize(version, flow_sid, sid) ⇒ EngagementContext

Initialize the EngagementContext

Parameters:

  • version (Version)

    Version that contains the resource

  • flow_sid (String)

    The SID of the Flow.

  • sid (String)

    The SID of the Engagement resource to fetch.



161
162
163
164
165
166
167
168
169
170
171
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 161

def initialize(version, flow_sid, sid)
    super(version)

    # Path Solution
    @solution = { flow_sid: flow_sid, sid: sid,  }
    @uri = "/Flows/#{@solution[:flow_sid]}/Engagements/#{@solution[:sid]}"

    # Dependents
    @steps = nil
    @engagement_context = nil
end

Instance Method Details

#deleteBoolean

Delete the EngagementInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



175
176
177
178
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 175

def delete

    @version.delete('DELETE', @uri)
end

#engagement_contextEngagementContextList, EngagementContextContext

Access the engagement_context



217
218
219
220
221
222
223
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 217

def engagement_context
    EngagementContextContext.new(
            @version,
            @solution[:flow_sid],
            @solution[:sid]
            )
end

#fetchEngagementInstance

Fetch the EngagementInstance

Returns:



183
184
185
186
187
188
189
190
191
192
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 183

def fetch

    payload = @version.fetch('GET', @uri)
    EngagementInstance.new(
        @version,
        payload,
        flow_sid: @solution[:flow_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



234
235
236
237
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 234

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

#steps(sid = :unset) ⇒ StepList, StepContext

Access the steps

Returns:

Raises:

  • (ArgumentError)


198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 198

def steps(sid=:unset)

    raise ArgumentError, 'sid cannot be nil' if sid.nil?

    if sid != :unset
        return StepContext.new(@version, @solution[:flow_sid], @solution[:sid],sid )
    end

    unless @steps
        @steps = StepList.new(
            @version, flow_sid: @solution[:flow_sid], engagement_sid: @solution[:sid], )
    end

 @steps
end

#to_sObject

Provide a user friendly representation



227
228
229
230
# File 'lib/twilio-ruby/rest/studio/v1/flow/engagement.rb', line 227

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