Class: Twilio::REST::Proxy::V1::ServiceContext::SessionContext::InteractionContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, service_sid, session_sid, sid) ⇒ InteractionContext

Initialize the InteractionContext

Parameters:

  • version (Version)

    Version that contains the resource

  • service_sid (String)

    The SID of the parent [Service](www.twilio.com/docs/proxy/api/service) of the resource to fetch.

  • session_sid (String)

    The SID of the parent [Session](www.twilio.com/docs/proxy/api/session) of the resource to fetch.

  • sid (String)

    The Twilio-provided string that uniquely identifies the Interaction resource to fetch.



164
165
166
167
168
169
170
171
172
173
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 164

def initialize(version, service_sid, session_sid, sid)
    super(version)
    

    # Path Solution
    @solution = { service_sid: service_sid, session_sid: session_sid, sid: sid,  }
    @uri = "/Services/#{@solution[:service_sid]}/Sessions/#{@solution[:session_sid]}/Interactions/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the InteractionInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



177
178
179
180
181
182
183
184
185
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 177

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    

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

#delete_with_metadataBoolean

Delete the InteractionInstanceMetadata

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 190

def 

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
      response = @version.('DELETE', @uri, headers: headers)
      interaction_instance = InteractionInstance.new(
          @version,
          response.body,
          account_sid: @solution[:account_sid],
          sid: @solution[:sid],
      )
      .new(@version, interaction_instance, response.headers, response.status_code)
end

#fetchInteractionInstance

Fetch the InteractionInstance

Returns:



209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 209

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    InteractionInstance.new(
        @version,
        payload,
        service_sid: @solution[:service_sid],
        session_sid: @solution[:session_sid],
        sid: @solution[:sid],
    )
end

#fetch_with_metadataInteractionInstance

Fetch the InteractionInstanceMetadata

Returns:



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 230

def 

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    response = @version.('GET', @uri, headers: headers)
    interaction_instance = InteractionInstance.new(
        @version,
        response.body,
        service_sid: @solution[:service_sid],
        session_sid: @solution[:session_sid],
        sid: @solution[:sid],
    )
    .new(
        @version,
        interaction_instance,
        response.headers,
        response.status_code
    )
end

#inspectObject

Provide a detailed, user friendly representation



264
265
266
267
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 264

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

#to_sObject

Provide a user friendly representation



257
258
259
260
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 257

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