Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieldwight committed Nov 4, 2023
1 parent 895b6cb commit e41c9e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ namespace WhatsappBusiness.CloudApi.Messages.Requests
public class CatalogMessageRequest
{
[JsonProperty("messaging_product")]
public string MessagingProduct { get; set; }
public string MessagingProduct { get; private set; } = "whatsapp";

[JsonProperty("recipient_type")]
public string RecipientType { get; set; }
public string RecipientType { get; private set; } = "individual";

[JsonProperty("to")]
public string To { get; set; }
Expand Down

0 comments on commit e41c9e0

Please sign in to comment.