Skip to content

Commit 46d83e8

Browse files
Merge pull request #67 from cmdotcom/feature/WhatappProductMessages
Feature/whatsapp product messages
2 parents 10ab519 + bad7504 commit 46d83e8

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.7.0] - 2023-06-26
8+
### Added
9+
- Whatsapp Multi-Product Template Messages
10+
711
## [2.6.0] - 2022-12-07
812
### Added
913
- System.Text.Json, replaces Newtsonsoft, possibly breaking

CM.Text/BusinessMessaging/Model/MultiChannel/WhatsAppInteractiveMessage.cs

+34
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,20 @@ public class InteractiveAction
148148
/// </summary>
149149
[JsonPropertyName("sections")]
150150
public InteractiveSection[] Sections { get; set; }
151+
/// <summary>
152+
/// Source: https://developers.facebook.com/docs/whatsapp/on-premises/reference/messages#action-object
153+
/// Product’s unique identifier
154+
/// Required for Single-Product Messages and Multi-Product Messages.
155+
/// </summary>
156+
[JsonPropertyName("product_retailer_id")]
157+
public string ProductRetailerId { get; set; }
158+
/// <summary>
159+
/// Source: https://developers.facebook.com/docs/whatsapp/on-premises/reference/messages#action-object
160+
/// Unique identifier of the Facebook catalog linked to your WhatsApp Business
161+
/// Required for Single-Product Messages and Multi-Product Messages.
162+
/// </summary>
163+
[JsonPropertyName("catalog_id")]
164+
public string CatalogId { get; set; }
151165
}
152166

153167
/// <summary>
@@ -223,6 +237,13 @@ public class InteractiveSection
223237
/// </summary>
224238
[JsonPropertyName("rows")]
225239
public Rows[] Rows { get; set; }
240+
/// <summary>
241+
/// Source: https://developers.facebook.com/docs/whatsapp/on-premises/reference/messages#action-object
242+
/// Array of product objects. There is a minimum of 1 product per section and a maximum of 30 products across all sections.
243+
/// Required for Multi-Product Messages.
244+
/// </summary>
245+
[JsonPropertyName("product_items")]
246+
public WhatsAppProduct[] ProductItems { get; set; }
226247
}
227248

228249
/// <summary>
@@ -250,4 +271,17 @@ public class Rows
250271
[JsonPropertyName("description")]
251272
public string Description { get; set; }
252273
}
274+
275+
/// <summary>
276+
/// https://developers.facebook.com/docs/whatsapp/on-premises/reference/messages#action-object
277+
/// Required for Multi-Product Messages.
278+
/// </summary>
279+
public class WhatsAppProduct
280+
{
281+
/// <summary>
282+
/// Unique identifier of the product in a catalog
283+
/// </summary>
284+
[JsonPropertyName("product_retailer_id")]
285+
public string ProductRetailerId { get; set; }
286+
}
253287
}

CM.Text/CM.Text.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1414
<PackageIcon>icon.png</PackageIcon>
1515
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../CHANGELOG.md"))</PackageReleaseNotes>
16-
<Version>2.6.0</Version>
16+
<Version>2.7.0</Version>
1717
<PackageProjectUrl>https://github.com/cmdotcom/text-sdk-dotnet</PackageProjectUrl>
1818
<NeutralLanguage>en</NeutralLanguage>
1919
<GenerateDocumentationFile>true</GenerateDocumentationFile>
20-
<AssemblyVersion>2.6.0</AssemblyVersion>
21-
<FileVersion>2.6.0</FileVersion>
20+
<AssemblyVersion>2.7.0</AssemblyVersion>
21+
<FileVersion>2.7.0</FileVersion>
2222
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2323
</PropertyGroup>
2424

0 commit comments

Comments
 (0)