diff --git a/README.md b/README.md index 956b6f6c..fa249cc5 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ The Vonage class provides access to various Vonage APIs through its properties. from vonage_sms import SmsMessage message = SmsMessage(to='1234567890', from_='Vonage', text='Hello World') -response = client.sms.send(message) +response = vonage.sms.send(message) print(response.model_dump_json(exclude_unset=True)) ```