Skip to content

Commit

Permalink
Fix #96
Browse files Browse the repository at this point in the history
Added additional properties returned from graph api
  • Loading branch information
gabrieldwight committed Jun 25, 2024
1 parent 63d51fc commit 41f0e60
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion WhatsappBusiness.CloudApi/Response/WhatsAppErrorResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ public class Error
[JsonProperty("code")]
public long Code { get; set; }

[JsonProperty("error_user_title")]
public string? ErrorUserTitle { get; set; }

[JsonProperty("error_user_msg")]
public string? ErrorUserMsg { get; set; }

[JsonProperty("error_data")]
public ErrorData ErrorData { get; set; }
public ErrorData? ErrorData { get; set; }

[JsonProperty("error_subcode")]
public long? ErrorSubcode { get; set; }
Expand Down

0 comments on commit 41f0e60

Please sign in to comment.