From 0846ab970422209c200350dcee3c02f1172b9d61 Mon Sep 17 00:00:00 2001 From: Dror Asaf Date: Sat, 11 Oct 2025 18:09:09 +0200 Subject: [PATCH] fix client documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) ```