Method: Twilio::REST::Insights::V1::SettingInstance#update

Defined in:
lib/twilio-ruby/rest/insights/v1/setting.rb

#update(advanced_features: :unset, voice_trace: :unset, subaccount_sid: :unset) ⇒ SettingInstance

Update the SettingInstance

Parameters:

  • advanced_features (Boolean) (defaults to: :unset)

    A boolean flag to enable Advanced Features for Voice Insights.

  • voice_trace (Boolean) (defaults to: :unset)

    A boolean flag to enable Voice Trace.

  • subaccount_sid (String) (defaults to: :unset)

    The unique SID identifier of the Subaccount.

Returns:



414
415
416
417
418
419
420
421
422
423
424
425
# File 'lib/twilio-ruby/rest/insights/v1/setting.rb', line 414

def update(
    advanced_features: :unset, 
    voice_trace: :unset, 
    subaccount_sid: :unset
)

    context.update(
        advanced_features: advanced_features, 
        voice_trace: voice_trace, 
        subaccount_sid: subaccount_sid, 
    )
end