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.



141
142
143
144
145
146
147
148
149
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 141

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



153
154
155
156
157
158
159
160
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 153

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchInteractionInstance

Fetch the InteractionInstance

Returns:



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 165

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

#inspectObject

Provide a detailed, user friendly representation



193
194
195
196
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 193

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

#to_sObject

Provide a user friendly representation



186
187
188
189
# File 'lib/twilio-ruby/rest/proxy/v1/service/session/interaction.rb', line 186

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