forked from braintree-go/braintree-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcvv_response_code.go
24 lines (17 loc) · 944 Bytes
/
cvv_response_code.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package braintree
type CVVResponseCode string
const (
// The CVV provided matches the information on file with the cardholder's bank.
CVVResponseCodeMatches CVVResponseCode = "M"
// The CVV provided does not match the information on file with the cardholder's bank.
CVVResponseCodeDoesNotMatch CVVResponseCode = "N"
// The card-issuing bank received the CVV but did not verify whether it was correct.
// This typically happens if the processor declines an authorization before the bank evaluates the CVV.
CVVResponseCodeNotVerified CVVResponseCode = "U"
// No CVV was provided.
CVVResponseCodeNotProvided CVVResponseCode = "I"
// The CVV was provided but the card-issuing bank does not participate in card verification.
CVVResponseCodeIssuerDoesNotParticipate CVVResponseCode = "S"
// The CVV was provided but this type of transaction does not support card verification.
CVVResponseCodeNotApplicable CVVResponseCode = "A"
)