Class: Twilio::REST::Api::V2010::AccountContext::CallContext::NotificationContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/call/notification.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, call_sid, sid) ⇒ NotificationContext

Initialize the NotificationContext

Parameters:

  • version (Version)

    Version that contains the resource

  • account_sid (String)

    The SID of the Account that created the Call Notification resource to fetch.

  • call_sid (String)

    The Call SID of the Call Notification resource to fetch.

  • sid (String)

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


203
204
205
206
207
208
209
# File 'lib/twilio-ruby/rest/api/v2010/account/call/notification.rb', line 203

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

  # Path Solution
  @solution = {account_sid: , call_sid: call_sid, sid: sid, }
  @uri = "/Accounts/#{@solution[:account_sid]}/Calls/#{@solution[:call_sid]}/Notifications/#{@solution[:sid]}.json"
end

Instance Method Details

#fetchNotificationInstance

Fetch the NotificationInstance

Returns:


214
215
216
217
218
219
220
221
222
223
224
# File 'lib/twilio-ruby/rest/api/v2010/account/call/notification.rb', line 214

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

  NotificationInstance.new(
      @version,
      payload,
      account_sid: @solution[:account_sid],
      call_sid: @solution[:call_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation


235
236
237
238
# File 'lib/twilio-ruby/rest/api/v2010/account/call/notification.rb', line 235

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

#to_sObject

Provide a user friendly representation


228
229
230
231
# File 'lib/twilio-ruby/rest/api/v2010/account/call/notification.rb', line 228

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