Class: Twilio::REST::Api::V2010::AccountContext::IncomingPhoneNumberContext::AssignedAddOnContext::AssignedAddOnExtensionContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, resource_sid, assigned_add_on_sid, sid) ⇒ AssignedAddOnExtensionContext

Initialize the AssignedAddOnExtensionContext

Parameters:

  • version (Version)

    Version that contains the resource

  • account_sid (String)

    The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the resource to fetch.

  • resource_sid (String)

    The SID of the Phone Number to which the Add-on is assigned.

  • assigned_add_on_sid (String)

    The SID that uniquely identifies the assigned Add-on installation.

  • sid (String)

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



166
167
168
169
170
171
172
173
174
175
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 166

def initialize(version, , resource_sid, assigned_add_on_sid, sid)
    super(version)
    

    # Path Solution
    @solution = { account_sid: , resource_sid: resource_sid, assigned_add_on_sid: assigned_add_on_sid, sid: sid,  }
    @uri = "/Accounts/#{@solution[:account_sid]}/IncomingPhoneNumbers/#{@solution[:resource_sid]}/AssignedAddOns/#{@solution[:assigned_add_on_sid]}/Extensions/#{@solution[:sid]}.json"

    
end

Instance Method Details

#fetchAssignedAddOnExtensionInstance

Fetch the AssignedAddOnExtensionInstance

Returns:



179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 179

def fetch

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

#fetch_with_metadataAssignedAddOnExtensionInstance

Fetch the AssignedAddOnExtensionInstanceMetadata

Returns:



201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 201

def 

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

#inspectObject

Provide a detailed, user friendly representation



236
237
238
239
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 236

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

#to_sObject

Provide a user friendly representation



229
230
231
232
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 229

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