From bc033ef986ae326e1af970f7b1278d1eb25ebcbe Mon Sep 17 00:00:00 2001 From: Volodymyr Lisovskyi Date: Tue, 7 May 2024 09:27:49 +0200 Subject: [PATCH] chore: update readme, remove warning (#70) --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 770cff6..ff7cdaa 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,9 @@ To use Sinch services, you'll need a Sinch account and access keys. You can sign For more information on the Sinch APIs on which this SDK is based, refer to the official [developer documentation portal](https://developers.sinch.com/). -> [!WARNING] -> This SDK is currently available to selected developers for preview use only. It is being provided for the purpose of collecting feedback, and should not be used in production environments. - - [Installation](#installation) - [Getting started](#getting-started) - - [Client initialization](#client-initialization) +- [Client initialization](#client-initialization) - [Supported Sinch products](#supported-sinch-products) - [Logging, HttpClient and additional options](#logging-httpclient-and-additional-options) - [Handling Exceptions](#handling-exceptions) @@ -27,7 +24,7 @@ For more information on the Sinch APIs on which this SDK is based, refer to the SinchSDK can be installed using the Nuget package manager or the `dotnet` CLI. ``` -dotnet add package Sinch --prerelease +dotnet add package Sinch ``` ## Getting started @@ -126,13 +123,12 @@ using Sinch; using Sinch.SMS.Batches.Send; try { - var batch = await sinch.Sms.Batches.Send(new SendBatchRequest + var batch = await sinch.Sms.Batches.Send(new SendTextBatchRequest() { Body = "Hello, World!", - DeliveryReport = DeliveryReport.None, To = new List() { - 123456789 + "+123456789" } }); }