@@ -38,7 +38,7 @@ def __init__(self, version, account_sid):
38
38
self ._uri = '/Accounts/{account_sid}/Messages.json' .format (** self ._solution )
39
39
40
40
def create (self , to , from_ , status_callback = values .unset ,
41
- application_sid = values .unset , provide_feeback = values .unset ,
41
+ application_sid = values .unset , provide_feedback = values .unset ,
42
42
body = values .unset , media_url = values .unset ):
43
43
"""
44
44
Create a new MessageInstance
@@ -47,7 +47,7 @@ def create(self, to, from_, status_callback=values.unset,
47
47
:param unicode from_: The phone number that initiated the message
48
48
:param unicode status_callback: URL Twilio will request when the status changes
49
49
:param unicode application_sid: The application to use for callbacks
50
- :param bool provide_feeback : The provide_feeback
50
+ :param bool provide_feedback : The provide_feedback
51
51
:param unicode body: The body
52
52
:param unicode media_url: The media_url
53
53
@@ -61,7 +61,7 @@ def create(self, to, from_, status_callback=values.unset,
61
61
'MediaUrl' : media_url ,
62
62
'StatusCallback' : status_callback ,
63
63
'ApplicationSid' : application_sid ,
64
- 'ProvideFeeback ' : provide_feeback ,
64
+ 'ProvideFeedback ' : provide_feedback ,
65
65
})
66
66
67
67
payload = self ._version .create (
0 commit comments