@@ -148,6 +148,20 @@ public class InteractiveAction
148
148
/// </summary>
149
149
[ JsonPropertyName ( "sections" ) ]
150
150
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 ; }
151
165
}
152
166
153
167
/// <summary>
@@ -223,6 +237,13 @@ public class InteractiveSection
223
237
/// </summary>
224
238
[ JsonPropertyName ( "rows" ) ]
225
239
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 ; }
226
247
}
227
248
228
249
/// <summary>
@@ -250,4 +271,17 @@ public class Rows
250
271
[ JsonPropertyName ( "description" ) ]
251
272
public string Description { get ; set ; }
252
273
}
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
+ }
253
287
}
0 commit comments