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

Inherits:
InstanceResource
  • 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, payload, account_sid: nil, resource_sid: nil, assigned_add_on_sid: nil, sid: nil) ⇒ AssignedAddOnExtensionInstance

Initialize the AssignedAddOnExtensionInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that created this AssignedAddOnExtension resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 220

def initialize(version, payload , account_sid: nil, resource_sid: nil, assigned_add_on_sid: nil, sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'account_sid' => payload['account_sid'],
        'resource_sid' => payload['resource_sid'],
        'assigned_add_on_sid' => payload['assigned_add_on_sid'],
        'friendly_name' => payload['friendly_name'],
        'product_name' => payload['product_name'],
        'unique_name' => payload['unique_name'],
        'uri' => payload['uri'],
        'enabled' => payload['enabled'],
    }

    # Context
    @instance_context = nil
    @params = { 'account_sid' =>   ,'resource_sid' => resource_sid  || @properties['resource_sid']  ,'assigned_add_on_sid' => assigned_add_on_sid  || @properties['assigned_add_on_sid']  ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

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

Returns:



260
261
262
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 260

def 
    @properties['account_sid']
end

#assigned_add_on_sidString

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

Returns:

  • (String)

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



272
273
274
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 272

def assigned_add_on_sid
    @properties['assigned_add_on_sid']
end

#contextAssignedAddOnExtensionContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



245
246
247
248
249
250
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 245

def context
    unless @instance_context
        @instance_context = AssignedAddOnExtensionContext.new(@version , @params['account_sid'], @params['resource_sid'], @params['assigned_add_on_sid'], @params['sid'])
    end
    @instance_context
end

#enabledBoolean

Returns Whether the Extension will be invoked.

Returns:

  • (Boolean)

    Whether the Extension will be invoked.



302
303
304
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 302

def enabled
    @properties['enabled']
end

#fetchAssignedAddOnExtensionInstance

Fetch the AssignedAddOnExtensionInstance

Returns:



309
310
311
312
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 309

def fetch

    context.fetch
end

#friendly_nameString

Returns The string that you assigned to describe the resource.

Returns:

  • (String)

    The string that you assigned to describe the resource.



278
279
280
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 278

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



323
324
325
326
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 323

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Api.V2010.AssignedAddOnExtensionInstance #{values}>"
end

#product_nameString

Returns A string that you assigned to describe the Product this Extension is used within.

Returns:

  • (String)

    A string that you assigned to describe the Product this Extension is used within.



284
285
286
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 284

def product_name
    @properties['product_name']
end

#resource_sidString

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

Returns:

  • (String)

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



266
267
268
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 266

def resource_sid
    @properties['resource_sid']
end

#sidString

Returns The unique string that that we created to identify the resource.

Returns:

  • (String)

    The unique string that that we created to identify the resource.



254
255
256
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 254

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



316
317
318
319
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 316

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Api.V2010.AssignedAddOnExtensionInstance #{values}>"
end

#unique_nameString

Returns An application-defined string that uniquely identifies the resource. It can be used in place of the resource’s ‘sid` in the URL to address the resource.

Returns:

  • (String)

    An application-defined string that uniquely identifies the resource. It can be used in place of the resource’s ‘sid` in the URL to address the resource.



290
291
292
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 290

def unique_name
    @properties['unique_name']
end

#uriString

Returns The URI of the resource, relative to ‘api.twilio.com`.

Returns:

  • (String)

    The URI of the resource, relative to ‘api.twilio.com`.



296
297
298
# File 'lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb', line 296

def uri
    @properties['uri']
end