forked from braintree-go/braintree-go
-
Notifications
You must be signed in to change notification settings - Fork 12
/
cvv_response_code.go
28 lines (21 loc) · 1.25 KB
/
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
25
26
27
28
package braintree
// CVVResponseCode is the response
// to the card verification value (CVV) provided by the customer.
type CVVResponseCode string
const (
// CVVResponseCodeMatches means the CVV provided matches the information on file with the cardholder's bank.
CVVResponseCodeMatches CVVResponseCode = "M"
// CVVResponseCodeDoesNotMatch means the The CVV provided does not match the information on file with the cardholder's bank.
CVVResponseCodeDoesNotMatch CVVResponseCode = "N"
// CVVResponseCodeNotVerified means the 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"
// CVVResponseCodeNotProvided means the no CVV was provided.
CVVResponseCodeNotProvided CVVResponseCode = "I"
// CVVResponseCodeIssuerDoesNotParticipate means the the CVV was provided
// but the card-issuing bank does not participate in card verification.
CVVResponseCodeIssuerDoesNotParticipate CVVResponseCode = "S"
// CVVResponseCodeNotApplicable means the the CVV was provided
// but this type of transaction does not support card verification.
CVVResponseCodeNotApplicable CVVResponseCode = "A"
)