Skip to content

Commit

Permalink
Merge pull request #1037 from stripe/remi-issuing-dispute-reason
Browse files Browse the repository at this point in the history
Add new enum values for `IssuingDisputeReason`
  • Loading branch information
remi-stripe authored Feb 25, 2020
2 parents f4b9895 + 1955a78 commit b7d89b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions issuing_dispute.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ type IssuingDisputeReason string

// List of values that IssuingDisputeReason can take.
const (
IssuingDisputeReasonFraudulent IssuingDisputeReason = "fraudulent"
IssuingDisputeReasonOther IssuingDisputeReason = "other"
IssuingDisputeReasonDuplicate IssuingDisputeReason = "duplicate"
IssuingDisputeReasonFraudulent IssuingDisputeReason = "fraudulent"
IssuingDisputeReasonOther IssuingDisputeReason = "other"
IssuingDisputeReasonProductNotReceived IssuingDisputeReason = "product_not_received"
)

// IssuingDisputeStatus is the list of possible values for status on an issuing dispute.
Expand Down

0 comments on commit b7d89b2

Please sign in to comment.