Skip to content

Commit

Permalink
Merge pull request #2208 from stripe/remi-issuing-events
Browse files Browse the repository at this point in the history
Add support for `IssuingDisputeClosed` and `IssuingDisputeSubmitted` on `Event`
  • Loading branch information
remi-stripe authored Sep 23, 2020
2 parents 77f54a2 + 4d26ced commit 88eed79
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Stripe.net/Constants/Events.cs
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,11 @@ public static class Events
/// </summary>
public const string IssuingCardholderUpdated = "issuing_cardholder.updated";

/// <summary>
/// Occurs whenever a dispute is closed.
/// </summary>
public const string IssuingDisputeClosed = "issuing_dispute.closed";

/// <summary>
/// Occurs whenever an issuing dispute is created.
/// </summary>
Expand All @@ -402,6 +407,11 @@ public static class Events
/// </summary>
public const string IssuingDisputeFundsReinstated = "issuing_dispute.funds_reinstated";

/// <summary>
/// Occurs whenever a dispute is submitted.
/// </summary>
public const string IssuingDisputeSubmitted = "issuing_dispute.submitted";

/// <summary>
/// Occurs whenever an issuing dispute is updated.
/// </summary>
Expand Down

0 comments on commit 88eed79

Please sign in to comment.