Skip to content

Commit

Permalink
adding payload parameter in whatsapp templates (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhnewatiya-plivo authored Apr 22, 2024
1 parent f5790d8 commit 9ca85c3
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [5.44.0](https://github.com/plivo/plivo-dotnet/tree/v5.44.0) (2024-04-22)
**Feature - Support for dynamic button components when sending a templated WhatsApp message**
- Added new param `payload` in templates to support dynamic payload in templates

## [5.43.2](https://github.com/plivo/plivo-dotnet/tree/v5.43.2) (2024-04-4)
**Feature - new response field declined_reasons field**
- Added new response field `declined_reasons` for LIST / GET Brand APIs
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can install this SDK either by referencing the .dll file or using NuGet.
Use the following line to install the latest SDK using the NuGet CLI.

```
PM> Install-Package Plivo -Version 5.43.2
PM> Install-Package Plivo -Version 5.44.0
```

You can also use the .NET CLI to install this package as follows
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Plivo.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard1.3</TargetFrameworks>
<ReleaseVersion>5.43.2</ReleaseVersion>
<ReleaseVersion>5.44.0</ReleaseVersion>
<Version />
<Authors>Plivo SDKs Team</Authors>
<Owners>Plivo Inc.</Owners>
Expand Down
3 changes: 2 additions & 1 deletion src/Plivo/Plivo.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
<summary>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</summary>
<description>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</description>
<id>Plivo</id>
<version>5.43.2</version>
<version>5.44.0</version>
<title>Plivo</title>
<authors>Plivo SDKs Team</authors>
<owners>Plivo, Inc.</owners>
<licenseUrl>https://github.com/plivo/plivo-dotnet/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>http://github.com/plivo/plivo-dotnet</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>
* 5.44.0 Added new param `payload` in templates to support dynamic payload in templates
* 5.43.2 Added New Param `declined_reasons` for GET and LIST Brand.
* 5.43.1 Bug fix on Create Profile API
* 5.43.0 Added Import Campaign API
Expand Down
6 changes: 6 additions & 0 deletions src/Plivo/Resource/Message/MessageInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,12 @@ public class Parameter
[JsonProperty("media")]
public string Media { get; set; }

/// <summary>
/// Gets or sets the payload value of the parameter.
/// </summary>
[JsonProperty("payload")]
public string Payload { get; set; }

/// <summary>
/// Gets or sets the currency information for the parameter.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class Version
/// <summary>
/// DotNet SDK version
/// </summary>
public const string SdkVersion = "5.43.2";
public const string SdkVersion = "5.44.0";
/// <summary>
/// Plivo API version
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.43.2",
"version": "5.44.0",
"publicReleaseRefSpec": [
"^refs/heads/master$",
"^refs/heads/v\\d+(?:\\.\\d+)?$"
Expand Down

0 comments on commit 9ca85c3

Please sign in to comment.