@@ -364,11 +364,11 @@ def __init__(self, version, account_sid, sid):
364
364
# Dependents
365
365
self ._assigned_add_ons = None
366
366
367
- def update (self , api_version = values .unset , friendly_name = values .unset ,
368
- sms_application_sid = values .unset , sms_fallback_method = values .unset ,
369
- sms_fallback_url = values .unset , sms_method = values .unset ,
370
- sms_url = values .unset , status_callback = values .unset ,
371
- status_callback_method = values .unset ,
367
+ def update (self , account_sid = values .unset , api_version = values .unset ,
368
+ friendly_name = values .unset , sms_application_sid = values .unset ,
369
+ sms_fallback_method = values .unset , sms_fallback_url = values .unset ,
370
+ sms_method = values .unset , sms_url = values .unset ,
371
+ status_callback = values . unset , status_callback_method = values .unset ,
372
372
voice_application_sid = values .unset ,
373
373
voice_caller_id_lookup = values .unset ,
374
374
voice_fallback_method = values .unset , voice_fallback_url = values .unset ,
@@ -378,6 +378,7 @@ def update(self, api_version=values.unset, friendly_name=values.unset,
378
378
"""
379
379
Update the IncomingPhoneNumberInstance
380
380
381
+ :param unicode account_sid: The new owner of the phone number
381
382
:param unicode api_version: The Twilio REST API version to use
382
383
:param unicode friendly_name: A human readable description of this resource
383
384
:param unicode sms_application_sid: Unique string that identifies the application
@@ -775,11 +776,11 @@ def emergency_address_sid(self):
775
776
"""
776
777
return self ._properties ['emergency_address_sid' ]
777
778
778
- def update (self , api_version = values .unset , friendly_name = values .unset ,
779
- sms_application_sid = values .unset , sms_fallback_method = values .unset ,
780
- sms_fallback_url = values .unset , sms_method = values .unset ,
781
- sms_url = values .unset , status_callback = values .unset ,
782
- status_callback_method = values .unset ,
779
+ def update (self , account_sid = values .unset , api_version = values .unset ,
780
+ friendly_name = values .unset , sms_application_sid = values .unset ,
781
+ sms_fallback_method = values .unset , sms_fallback_url = values .unset ,
782
+ sms_method = values .unset , sms_url = values .unset ,
783
+ status_callback = values . unset , status_callback_method = values .unset ,
783
784
voice_application_sid = values .unset ,
784
785
voice_caller_id_lookup = values .unset ,
785
786
voice_fallback_method = values .unset , voice_fallback_url = values .unset ,
@@ -789,6 +790,7 @@ def update(self, api_version=values.unset, friendly_name=values.unset,
789
790
"""
790
791
Update the IncomingPhoneNumberInstance
791
792
793
+ :param unicode account_sid: The new owner of the phone number
792
794
:param unicode api_version: The Twilio REST API version to use
793
795
:param unicode friendly_name: A human readable description of this resource
794
796
:param unicode sms_application_sid: Unique string that identifies the application
@@ -812,6 +814,7 @@ def update(self, api_version=values.unset, friendly_name=values.unset,
812
814
:rtype: twilio.rest.api.v2010.account.incoming_phone_number.IncomingPhoneNumberInstance
813
815
"""
814
816
return self ._proxy .update (
817
+ account_sid = account_sid ,
815
818
api_version = api_version ,
816
819
friendly_name = friendly_name ,
817
820
sms_application_sid = sms_application_sid ,
0 commit comments