Skip to content

Commit

Permalink
feat(webhooks): add transactions deleted event
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabrielpanga committed Nov 7, 2023
1 parent febb8f6 commit a91b1ad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Pluggy.SDK/Model/Webhook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class WebhookEvent
public static WebhookEvent ITEM_LOGIN_SUCCEEDED { get { return new WebhookEvent("item/login_succeeded"); } }
public static WebhookEvent ITEM_WAITING_USER_INPUT { get { return new WebhookEvent("item/waiting_user_input"); } }
public static WebhookEvent CONNECTOR_STATUS_UPDATED { get { return new WebhookEvent("connector/status_updated"); } }
public static WebhookEvent TRANSACTIONS_DELETED { get { return new WebhookEvent("transactions/deleted"); } }
public static WebhookEvent ITEM_ALL { get { return new WebhookEvent("all"); } }

public string Value { get; set; }
Expand Down

0 comments on commit a91b1ad

Please sign in to comment.