@@ -438,7 +438,8 @@ def fetch(self):
438438
439439 def update (self , url = values .unset , method = values .unset , status = values .unset ,
440440 fallback_url = values .unset , fallback_method = values .unset ,
441- status_callback = values .unset , status_callback_method = values .unset ):
441+ status_callback = values .unset , status_callback_method = values .unset ,
442+ twiml = values .unset ):
442443 """
443444 Update the CallInstance
444445
@@ -449,6 +450,7 @@ def update(self, url=values.unset, method=values.unset, status=values.unset,
449450 :param unicode fallback_method: HTTP Method to use with fallback_url
450451 :param unicode status_callback: The URL we should call to send status information to your application
451452 :param unicode status_callback_method: HTTP Method to use to call status_callback
453+ :param unicode twiml: TwiML instructions for the call
452454
453455 :returns: Updated CallInstance
454456 :rtype: twilio.rest.api.v2010.account.call.CallInstance
@@ -461,6 +463,7 @@ def update(self, url=values.unset, method=values.unset, status=values.unset,
461463 'FallbackMethod' : fallback_method ,
462464 'StatusCallback' : status_callback ,
463465 'StatusCallbackMethod' : status_callback_method ,
466+ 'Twiml' : twiml ,
464467 })
465468
466469 payload = self ._version .update (
@@ -837,7 +840,8 @@ def fetch(self):
837840
838841 def update (self , url = values .unset , method = values .unset , status = values .unset ,
839842 fallback_url = values .unset , fallback_method = values .unset ,
840- status_callback = values .unset , status_callback_method = values .unset ):
843+ status_callback = values .unset , status_callback_method = values .unset ,
844+ twiml = values .unset ):
841845 """
842846 Update the CallInstance
843847
@@ -848,6 +852,7 @@ def update(self, url=values.unset, method=values.unset, status=values.unset,
848852 :param unicode fallback_method: HTTP Method to use with fallback_url
849853 :param unicode status_callback: The URL we should call to send status information to your application
850854 :param unicode status_callback_method: HTTP Method to use to call status_callback
855+ :param unicode twiml: TwiML instructions for the call
851856
852857 :returns: Updated CallInstance
853858 :rtype: twilio.rest.api.v2010.account.call.CallInstance
@@ -860,6 +865,7 @@ def update(self, url=values.unset, method=values.unset, status=values.unset,
860865 fallback_method = fallback_method ,
861866 status_callback = status_callback ,
862867 status_callback_method = status_callback_method ,
868+ twiml = twiml ,
863869 )
864870
865871 @property
0 commit comments