Class: Twilio::REST::Preview::Marketplace::InstalledAddOnContext::InstalledAddOnExtensionInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, installed_add_on_sid: nil, sid: nil) ⇒ InstalledAddOnExtensionInstance

Initialize the InstalledAddOnExtensionInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this InstalledAddOnExtension resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 236

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

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

Instance Method Details

#contextInstalledAddOnExtensionContext

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

Returns:



259
260
261
262
263
264
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 259

def context
    unless @instance_context
        @instance_context = InstalledAddOnExtensionContext.new(@version , @params['installed_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.



298
299
300
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 298

def enabled
    @properties['enabled']
end

#fetchInstalledAddOnExtensionInstance

Fetch the InstalledAddOnExtensionInstance

Returns:



311
312
313
314
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 311

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.



280
281
282
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 280

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



338
339
340
341
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 338

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

#installed_add_on_sidString

Returns The SID of the InstalledAddOn resource to which this extension applies.

Returns:

  • (String)

    The SID of the InstalledAddOn resource to which this extension applies.



274
275
276
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 274

def installed_add_on_sid
    @properties['installed_add_on_sid']
end

#product_nameString

Returns The name of the Product this Extension is used within.

Returns:

  • (String)

    The name of the Product this Extension is used within.



286
287
288
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 286

def product_name
    @properties['product_name']
end

#sidString

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

Returns:

  • (String)

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



268
269
270
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 268

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



331
332
333
334
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 331

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

#unique_nameString

Returns An application-defined string that uniquely identifies the resource.

Returns:

  • (String)

    An application-defined string that uniquely identifies the resource.



292
293
294
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 292

def unique_name
    @properties['unique_name']
end

#update(enabled: nil) ⇒ InstalledAddOnExtensionInstance

Update the InstalledAddOnExtensionInstance

Parameters:

  • enabled (Boolean) (defaults to: nil)

    Whether the Extension should be invoked.

Returns:



320
321
322
323
324
325
326
327
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 320

def update(
    enabled: nil
)

    context.update(
        enabled: enabled, 
    )
end

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource.



304
305
306
# File 'lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb', line 304

def url
    @properties['url']
end