@@ -364,11 +364,11 @@ def __init__(self, version, account_sid, sid):
364364 # Dependents
365365 self ._assigned_add_ons = None
366366
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 ,
372372 voice_application_sid = values .unset ,
373373 voice_caller_id_lookup = values .unset ,
374374 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,
378378 """
379379 Update the IncomingPhoneNumberInstance
380380
381+ :param unicode account_sid: The new owner of the phone number
381382 :param unicode api_version: The Twilio REST API version to use
382383 :param unicode friendly_name: A human readable description of this resource
383384 :param unicode sms_application_sid: Unique string that identifies the application
@@ -775,11 +776,11 @@ def emergency_address_sid(self):
775776 """
776777 return self ._properties ['emergency_address_sid' ]
777778
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 ,
783784 voice_application_sid = values .unset ,
784785 voice_caller_id_lookup = values .unset ,
785786 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,
789790 """
790791 Update the IncomingPhoneNumberInstance
791792
793+ :param unicode account_sid: The new owner of the phone number
792794 :param unicode api_version: The Twilio REST API version to use
793795 :param unicode friendly_name: A human readable description of this resource
794796 :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,
812814 :rtype: twilio.rest.api.v2010.account.incoming_phone_number.IncomingPhoneNumberInstance
813815 """
814816 return self ._proxy .update (
817+ account_sid = account_sid ,
815818 api_version = api_version ,
816819 friendly_name = friendly_name ,
817820 sms_application_sid = sms_application_sid ,
0 commit comments