File tree 7 files changed +13
-6
lines changed
7 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 5.47.3] ( https://github.com/plivo/plivo-dotnet/tree/v5.47.3 ) (2024-07-09)
4
+ ** Feature - Adding support for Locale param in Get and List Session**
5
+ - Support for param ` locale ` in get and list Session API Response
6
+
3
7
## [ 5.47.2] ( https://github.com/plivo/plivo-dotnet/tree/v5.47.2 ) (2024-06-20)
4
8
** Feature - Adding support for Locale param in Create Session**
5
9
- Added new request param ` locale ` in create Session API
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ You can install this SDK either by referencing the .dll file or using NuGet.
12
12
Use the following line to install the latest SDK using the NuGet CLI.
13
13
14
14
```
15
- PM> Install-Package Plivo -Version 5.47.2
15
+ PM> Install-Package Plivo -Version 5.47.3
16
16
```
17
17
18
18
You can also use the .NET CLI to install this package as follows
19
19
20
20
```
21
- > dotnet add package Plivo --version 5.47.2
21
+ > dotnet add package Plivo --version 5.47.3
22
22
```
23
23
24
24
## Getting started
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<TargetFrameworks >netstandard2.0;netstandard1.3</TargetFrameworks >
4
- <ReleaseVersion >5.47.2 </ReleaseVersion >
4
+ <ReleaseVersion >5.47.3 </ReleaseVersion >
5
5
<Version />
6
6
<Authors >Plivo SDKs Team</Authors >
7
7
<Owners >Plivo Inc.</Owners >
Original file line number Diff line number Diff line change 4
4
<summary >A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</summary >
5
5
<description >A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</description >
6
6
<id >Plivo</id >
7
- <version >5.47.2 </version >
7
+ <version >5.47.3 </version >
8
8
<title >Plivo</title >
9
9
<authors >Plivo SDKs Team</authors >
10
10
<owners >Plivo, Inc.</owners >
Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ public class VerifySession : Resource
53
53
[ JsonProperty ( "channel" ) ]
54
54
public string Channel { get ; set ; }
55
55
56
+ [ JsonProperty ( "locale" ) ]
57
+ public string Locale { get ; set ; }
58
+
56
59
[ JsonProperty ( "status" ) ]
57
60
public string Status { get ; set ; }
58
61
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class Version
10
10
/// <summary>
11
11
/// DotNet SDK version
12
12
/// </summary>
13
- public const string SdkVersion = "5.47.2 " ;
13
+ public const string SdkVersion = "5.47.3 " ;
14
14
/// <summary>
15
15
/// Plivo API version
16
16
/// </summary>
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 5.47.2 " ,
2
+ "version" : " 5.47.3 " ,
3
3
"publicReleaseRefSpec" : [
4
4
" ^refs/heads/master$" ,
5
5
" ^refs/heads/v\\ d+(?:\\ .\\ d+)?$"
You can’t perform that action at this time.
0 commit comments